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.

36 lines
772 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000 - 2001.
  5. //
  6. // File: headers.hxx
  7. //
  8. // Contents: dll entry point
  9. //
  10. // History: 07-27-2001 Hiteshr Created
  11. //
  12. //----------------------------------------------------------------------------
  13. //
  14. //CRoleMgrModule
  15. //
  16. class CRoleMgrModule : public CComModule
  17. {
  18. public:
  19. HRESULT WINAPI UpdateRegistryCLSID(const CLSID& clsid, BOOL bRegister);
  20. };
  21. extern CRoleMgrModule _Module;
  22. extern UINT g_cfDsSelectionList;
  23. //
  24. // CRoleSnapinApp
  25. //
  26. class CRoleSnapinApp : public CWinApp
  27. {
  28. public:
  29. virtual BOOL InitInstance();
  30. virtual int ExitInstance();
  31. };
  32. extern CRoleSnapinApp theApp;