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.

45 lines
709 B

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. PRECOMP.H
  5. Abstract:
  6. include file for standard system include files,
  7. or project specific include files that are used frequently, but
  8. are changed infrequently
  9. History:
  10. a--davj 04-Mar-97 Created.
  11. --*/
  12. #pragma warning (disable : 4786)
  13. #pragma warning( disable : 4251 )
  14. #include <ole2.h>
  15. #include <windows.h>
  16. #define COREPROX_POLARITY __declspec( dllimport )
  17. #define ESSLIB_POLARITY __declspec( dllimport )
  18. #include <wbemidl.h>
  19. #include <stdio.h>
  20. #include <wbemcomn.h>
  21. #include "tstring.h"
  22. class CObject
  23. {
  24. public:
  25. virtual ~CObject(){}
  26. };
  27. #include "stdprov.h"
  28. #undef PURE
  29. #define PURE {return (unsigned long)E_NOTIMPL;}