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.

33 lines
616 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  6. //
  7. // File: domain.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef _DOMAIN_H
  11. #define _DOMAIN_H
  12. ///////////////////////////////////////////////////////////////////////
  13. // CDsUiWizDLL
  14. class CDsUiWizDLL
  15. {
  16. public:
  17. CDsUiWizDLL();
  18. ~CDsUiWizDLL();
  19. BOOL Load();
  20. HRESULT TrustWizard(HWND hWndParent = NULL, LPCWSTR lpsz = NULL);
  21. private:
  22. HMODULE m_hLibrary;
  23. FARPROC m_pfFunction;
  24. };
  25. #endif // _DOMAIN_H