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.

25 lines
874 B

  1. //---------------------------------------------------------------------------
  2. // stdafx.h : include file for standard system include files
  3. //---------------------------------------------------------------------------
  4. #pragma once
  5. //---------------------------------------------------------------------------
  6. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <windows.h>
  10. #include <atlbase.h>
  11. #include <uxthemep.h>
  12. #include <tmschema.h>
  13. #define STRSAFE_LIB
  14. #include <strsafe.h>
  15. //---------------------------------------------------------------------------
  16. #define WIDTH(rc) ((rc).right - (rc).left)
  17. #define HEIGHT(rc) ((rc).bottom - (rc).top)
  18. #define ARRAYSIZE(a) (sizeof(a)/sizeof(a[0]))
  19. //---------------------------------------------------------------------------