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.

46 lines
951 B

  1. // @doc
  2. /**********************************************************************
  3. *
  4. * @module stdhdrs.h |
  5. *
  6. * Pulls in all the headers needed by most of the modules in the ControlItemCollection library.
  7. *
  8. * History
  9. * ----------------------------------------------------------
  10. * Mitchell S. Dernis Original
  11. *
  12. * (c) 1986-1998 Microsoft Corporation. All right reserved.
  13. *
  14. *
  15. **********************************************************************/
  16. #ifdef COMPILE_FOR_WDM_KERNEL_MODE
  17. extern "C"
  18. {
  19. #include <wdm.h>
  20. #include <winerror.h>
  21. #include <Hidpddi.h>
  22. }
  23. #else
  24. #include <windows.h>
  25. #include <crtdbg.h>
  26. extern "C"
  27. {
  28. #pragma warning( disable : 4201 )
  29. #include "Hidsdi.h"
  30. #pragma warning( default : 4201 )
  31. }
  32. #endif
  33. #include "DualMode.h"
  34. extern "C"
  35. {
  36. #include "debug.h"
  37. DECLARE_MODULE_DEBUG_LEVEL((DBG_WARN|DBG_ERROR|DBG_CRITICAL) );
  38. }
  39. #include "ListAsArray.h"
  40. #include "ControlItemCollection.h"