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.

46 lines
1.1 KiB

  1. // wizards.h : main header file for the WIZARDS DLL
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7. #include "Callback.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWizardsApp
  10. // See wizards.cpp for the implementation of this class
  11. //
  12. extern "C" __declspec(dllexport) int runWizard(int, HWND);
  13. class CWizardsApp : public CWinApp
  14. {
  15. public:
  16. CWizardsApp();
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CWizardsApp)
  20. //}}AFX_VIRTUAL
  21. public:
  22. virtual BOOL InitInstance();
  23. virtual int ExitInstance();
  24. //{{AFX_MSG(CWizardsApp)
  25. // NOTE - the ClassWizard will add and remove member functions here.
  26. // DO NOT EDIT what you see in these blocks of generated code !
  27. //}}AFX_MSG
  28. DECLARE_MESSAGE_MAP()
  29. };
  30. int doAccount();
  31. int doComputer();
  32. int doSecurity();
  33. int doGroup();
  34. int doService();
  35. int doExchangeDir();
  36. int doExchangeSrv();
  37. int doReporting();
  38. int doUndo();
  39. int doRetry();
  40. int doTrust();
  41. int doGroupMapping();