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.

66 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. iisadminextension.cxx
  5. Abstract:
  6. IIS Services IISADMIN Extension
  7. Include file for class CAdmExt implementing CLSID_SSLCONFIGPROV
  8. Author:
  9. Michael W. Thomas 16-Sep-97
  10. Jaroslav DUnajsky 24-Apr-2001
  11. - used code brom svcext.dll to write new metabase extension that gets started
  12. - during iisadmin startup and starts SSL CONFIG PROVIDER
  13. --*/
  14. #ifndef _IISADMINEXTENSION__H_
  15. #define _IISADMINEXTENSION__H_
  16. //
  17. #define SZ_CLSID_SSLCONFIGPROV _TEXT("{3B2C4069-F07F-473a-9899-B3902CED0941}")
  18. DEFINE_GUID(CLSID_SSLCONFIGPROV, 0x3b2c4069, 0xf07f, 0x473a, 0x98, 0x99, 0xb3, 0x90, 0x2c, 0xed, 0x9, 0x41);
  19. class CAdmExt : public IADMEXT {
  20. public:
  21. CAdmExt();
  22. ~CAdmExt();
  23. HRESULT STDMETHODCALLTYPE
  24. Initialize( void );
  25. HRESULT STDMETHODCALLTYPE
  26. EnumDcomCLSIDs(
  27. /* [size_is][out] */ CLSID *pclsidDcom,
  28. /* [in] */ DWORD dwEnumIndex);
  29. HRESULT STDMETHODCALLTYPE
  30. Terminate( void );
  31. HRESULT _stdcall
  32. QueryInterface(REFIID riid, void **ppObject);
  33. ULONG _stdcall
  34. AddRef();
  35. ULONG _stdcall
  36. Release();
  37. private:
  38. DWORD m_dwRefCount;
  39. SSL_CONFIG_PROV_SERVER m_SslConfigProvServer;
  40. SSL_CONFIG_CHANGE_PROV_SERVER m_SslConfigChangeProvServer;
  41. };
  42. #endif
  43.