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.

38 lines
1.3 KiB

  1. //**********************************************************************
  2. //
  3. // SETUPX.H
  4. //
  5. // Copyright (c) 1993 - Microsoft Corp.
  6. // All rights reserved.
  7. // Microsoft Confidential
  8. //
  9. // Public include file for Chicago specific Setup and device management
  10. // services.
  11. //
  12. // 12/4/93 DONALDM Created this file to support new Chicago
  13. // specific exports in SETUP4.DLL
  14. //**********************************************************************
  15. #ifndef SETUP4_INC
  16. #define SETUP4_INC
  17. #if (WINVER < 0x0400)
  18. // Do a warning message here
  19. #endif
  20. #pragma warning(disable:4201) // Non-standard extensions
  21. #pragma warning(disable:4209) // Non-standard extensions
  22. #pragma warning(disable:4214) // Non-standard extensions
  23. #include <prsht.h>
  24. #include <commctrl.h> // Need this for the following functions.
  25. RETERR WINAPI DiGetClassImageList(HIMAGELIST FAR *lpMiniIconList);
  26. RETERR WINAPI DiGetClassImageIndex(LPCSTR lpszClass, int FAR *lpiImageIndex);
  27. RETERR WINAPI DiGetClassDevPropertySheets(LPDEVICE_INFO lpdi, LPPROPSHEETHEADER lppsh, WORD wFlags);
  28. // Flags for the DiGetClassDevPropertySheets API
  29. #define DIGCDP_FLAG_BASIC 0x0001
  30. #define DIGCDP_FLAG_ADVANCED 0x0002
  31. #endif // SETUP4_INC