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.

34 lines
637 B

  1. /*++
  2. Copyright (c) 2000, Microsoft Corporation
  3. Module Name:
  4. appcompat.h
  5. Abstract:
  6. Definitions and prototypes for the app compat functions that are not
  7. published in the DDK but that we need to build the printer drivers off it.
  8. Normally they reside in winuserp.h/user32p.lib.
  9. --*/
  10. #ifndef _WINUSERP_
  11. #ifndef _PRINTAPPCOMPAT_
  12. #define _PRINTAPPCOMPAT_
  13. #ifdef BUILD_FROM_DDK
  14. #define GACF2_NOCUSTOMPAPERSIZES 0x00001000 // PostScript driver bit for Harvard Graphics
  15. #define VER40 0x0400
  16. #else
  17. #include <winuserp.h>
  18. #endif
  19. DWORD GetAppCompatFlags2(WORD);
  20. #endif
  21. #endif