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.

63 lines
1.1 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // proxypch.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Precompiled header file for the proxy extension snap-in.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 02/10/2000 Original version.
  16. //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. #ifndef PROXYPCH_H
  19. #define PROXYPCH_H
  20. #if _MSC_VER >= 1000
  21. #pragma once
  22. #endif
  23. // Make sure we're always using Unicode APIs.
  24. #ifndef UNICODE
  25. #define UNICODE
  26. #endif
  27. #ifndef _UNICODE
  28. #define _UNICODE
  29. #endif
  30. // MFC support.
  31. #include <afxwin.h>
  32. #include <afxcmn.h>
  33. #include <afxdisp.h>
  34. #include <afxext.h>
  35. // No-throw new operator.
  36. #include <new>
  37. // MMC
  38. #include <mmc.h>
  39. // ATL
  40. #include <atlbase.h>
  41. extern CComModule _Module;
  42. #include <atlcom.h>
  43. // Our SDO ...
  44. #include <objvec.h>
  45. #include <sdowrap.h>
  46. // ... and MMC helpers.
  47. #include <snapwork.h>
  48. using namespace SnapIn;
  49. // Contextual help
  50. #include "dlgcshlp.h"
  51. // Resource defines.
  52. #include "proxyres.h"
  53. #endif // PROXYPCH_H