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.

45 lines
1.2 KiB

  1. //-------------------------------------------------------------------
  2. //
  3. // FILE: SecDlgs.hpp
  4. //
  5. // Summary;
  6. // This file contians the definitions of Secondary Dialogs functions
  7. //
  8. // Entry Points;
  9. // LicViolationDialog
  10. // SetupPerOnlyDialog
  11. // PerServerAgreementDialog
  12. // PerSeatAgreementDialog
  13. // ServerAppAgreementDialog
  14. //
  15. // History;
  16. // Nov-30-94 MikeMi Created
  17. //
  18. //-------------------------------------------------------------------
  19. #ifndef __SECDLGS_HPP__
  20. #define __SECDLGS_HPP__
  21. // Used to pass information from the Setup entry point to the Setup Dialog
  22. //
  23. extern int LicViolationDialog( HWND hwndParent );
  24. extern int SetupPerOnlyDialog( HWND hwndParent,
  25. LPCWSTR pszDisplayName,
  26. LPCWSTR pszHelpFile,
  27. DWORD dwHelpContext );
  28. extern int PerServerAgreementDialog( HWND hwndParent,
  29. LPCWSTR pszDisplayName,
  30. DWORD dwLimit,
  31. LPCWSTR pszHelpFile,
  32. DWORD dwHelpContext );
  33. extern int PerSeatAgreementDialog( HWND hwndParent,
  34. LPCWSTR pszDisplayName,
  35. LPCWSTR pszHelpFile,
  36. DWORD dwHelpContext );
  37. extern int ServerAppAgreementDialog( HWND hwndParent,
  38. LPCWSTR pszHelpFile,
  39. DWORD dwHelpContext );
  40. #endif