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.

68 lines
1.6 KiB

  1. // This is a part of the Microsoft Management Console.
  2. // Copyright (C) Microsoft Corporation, 1995 - 1999
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Management Console and related
  7. // electronic documentation provided with the interfaces.
  8. // stdafx.h : include file for standard system include files,
  9. // or project specific include files that are used frequently,
  10. // but are changed infrequently
  11. #undef _MSC_EXTENSIONS
  12. #define __DIR__ "certmmc"
  13. #include <windows.h>
  14. #include <objbase.h>
  15. #include <coguid.h>
  16. #include <aclui.h>
  17. #include <wincrypt.h>
  18. #include <setupapi.h>
  19. #include "ocmanage.h"
  20. #include <atlbase.h>
  21. #include <comdef.h>
  22. //using namespace ATL;
  23. //You may derive a class from CComModule and use it if you want to override
  24. //something, but do not change the name of _Module
  25. extern CComModule _Module;
  26. extern const CLSID CLSID_Snapin; // In-Proc server GUID
  27. extern const CLSID CLSID_Extension; // In-Proc server GUID
  28. extern const CLSID CLSID_About;
  29. extern HINSTANCE g_hInstance;
  30. #define ARRAYLEN(x) (sizeof(x) / sizeof((x)[0]))
  31. #include <atlcom.h>
  32. #pragma comment(lib, "mmc")
  33. #include <mmc.h>
  34. // include debug allocator tracking, etc
  35. #include "certlib.h"
  36. // Thomlinson Foundation Classes
  37. #include "tfc.h"
  38. #include <certsrv.h>
  39. #include <certdb.h>
  40. #include <initcert.h>
  41. // most common private includes
  42. #include "uuids.h"
  43. #include "misc.h"
  44. #include "folders.h"
  45. #include "certwrap.h"
  46. #include "compdata.h"
  47. #include "CSnapin.h"
  48. #include "DataObj.h"
  49. inline void __stdcall _com_issue_error(long) {}