Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
469 B

  1. // Include all the primitives (classes derived from CPrimitive)
  2. #include "CPaths.h"
  3. #include "CBanding.h"
  4. #include "CPrinting.h"
  5. #include "CExtra.h"
  6. // Create global objects for each individual primitive
  7. // First constructor param is the regression flag
  8. // If true, the test will take part of the regression suite
  9. CPaths g_Paths(true);
  10. CBanding g_Banding(true);
  11. void ExtraInitializations()
  12. {
  13. g_Paths.Init();
  14. g_Banding.Init();
  15. }