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.

37 lines
878 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: Global.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 __GLOBAL_H
  14. #define __GLOBAL_H
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <stdarg.h>
  18. #include <windows.h>
  19. #include <objbase.h>
  20. #include <math.h>
  21. #include <winspool.h>
  22. #include <commdlg.h>
  23. #include <wingdi.h>
  24. #include <ddraw.h>
  25. #include "debug.h"
  26. #define IStream int
  27. #include <gdiplus.h>
  28. using namespace Gdiplus;
  29. #define TESTAREAWIDTH 256.0f
  30. #define TESTAREAHEIGHT 256.0f
  31. #endif