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.

44 lines
1.2 KiB

  1. //+------------------------------------------------------------------
  2. //
  3. // Project: Windows NT4 DS Client Setup Wizard
  4. //
  5. // Purpose: Installs the Windows NT4 DS Client Files
  6. //
  7. // File: wizard.h
  8. //
  9. // History: March 1998 Zeyong Xu Created
  10. // Jan 2000 Jeff Jones (JeffJon) Modified
  11. // - changed to be an NT setup
  12. //
  13. //------------------------------------------------------------------
  14. BOOL CALLBACK WelcomeDialogProc(HWND hWnd,
  15. UINT nMessage,
  16. WPARAM wParam,
  17. LPARAM lParam);
  18. /* ntbug#337931: remove license page
  19. BOOL CALLBACK LicenseDialogProc(HWND hWnd,
  20. UINT nMessage,
  21. WPARAM wParam,
  22. LPARAM lParam);
  23. */
  24. BOOL CALLBACK ConfirmDialogProc(HWND hWnd,
  25. UINT nMessage,
  26. WPARAM wParam,
  27. LPARAM lParam);
  28. BOOL CALLBACK InstallDialogProc(HWND hWnd,
  29. UINT nMessage,
  30. WPARAM wParam,
  31. LPARAM lParam);
  32. BOOL CALLBACK CompletionDialogProc(HWND hWnd,
  33. UINT nMessage,
  34. WPARAM wParam,
  35. LPARAM lParam);
  36. BOOL ConfirmCancelWizard(HWND hWnd);
  37. DWORD WINAPI DoInstallationProc(LPVOID lpVoid);