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.

36 lines
897 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: CPrinting.h
  3. *
  4. * This file contains the code to support the functionality test harness
  5. * for GDI+. This includes menu options and calling the appropriate
  6. * functions for execution.
  7. *
  8. * Created: 05-May-2000 - Jeff Vezina [t-jfvez]
  9. *
  10. * Copyright (c) 2000 Microsoft Corporation
  11. *
  12. \**************************************************************************/
  13. #ifndef __CPRINTING_H
  14. #define __CPRINTING_H
  15. #include "..\CPrimitive.h"
  16. class CPrinting : public CPrimitive
  17. {
  18. public:
  19. CPrinting(BOOL bRegression);
  20. virtual ~CPrinting();
  21. void Draw(Graphics *g);
  22. VOID TestPerfPrinting(Graphics *g);
  23. VOID TestTextPrinting(Graphics *g);
  24. VOID TestNolan1(Graphics *g);
  25. VOID TestNolan2(Graphics *g);
  26. VOID TestBug104604(Graphics *g);
  27. };
  28. #endif