Source code of Windows XP (NT5)
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.

30 lines
1.3 KiB

  1. /*****************************************************************************\
  2. * *
  3. * cplp.h - Private Control panel extension DLL definitions *
  4. * *
  5. * Version 3.10 *
  6. * *
  7. * Copyright (c) Microsoft Corporation. All rights reserved. *
  8. * *
  9. ******************************************************************************/
  10. #ifndef _INC_CPLP
  11. #define _INC_CPLP
  12. #include <pshpack1.h> /* Assume byte packing throughout */
  13. #ifdef __cplusplus
  14. extern "C" { /* Assume C declarations for C++ */
  15. #endif /* __cplusplus */
  16. /* if lParam1 == CPL_INIT_DEVMODE_TAG for the display applet then */
  17. /* a Devmode structure is sent to lParam2 */
  18. #define CPL_INIT_DEVMODE_TAG 0x4D564544 // represents "DEVM"
  19. #define CPL_DO_PRINTER_SETUP 100
  20. #define CPL_DO_NETPRN_SETUP 101
  21. #define CPL_POLICYREFRESH 102
  22. #ifdef __cplusplus
  23. }
  24. #endif /* __cplusplus */
  25. #include <poppack.h>
  26. #endif /* _INC_CPLP */