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.
|
|
//-------------------------------------------------------------------
//
// FILE: SecDlgs.hpp
//
// Summary;
// This file contians the definitions of Secondary Dialogs functions
//
// Entry Points;
// LicViolationDialog
// SetupPerOnlyDialog
// PerServerAgreementDialog
// PerSeatAgreementDialog
// ServerAppAgreementDialog
//
// History;
// Nov-30-94 MikeMi Created
//
//-------------------------------------------------------------------
#ifndef __SECDLGS_HPP__
#define __SECDLGS_HPP__
// Used to pass information from the Setup entry point to the Setup Dialog
//
extern int LicViolationDialog( HWND hwndParent ); extern int SetupPerOnlyDialog( HWND hwndParent, LPCWSTR pszDisplayName, LPCWSTR pszHelpFile, DWORD dwHelpContext ); extern int PerServerAgreementDialog( HWND hwndParent, LPCWSTR pszDisplayName, DWORD dwLimit, LPCWSTR pszHelpFile, DWORD dwHelpContext ); extern int PerSeatAgreementDialog( HWND hwndParent, LPCWSTR pszDisplayName, LPCWSTR pszHelpFile, DWORD dwHelpContext ); extern int ServerAppAgreementDialog( HWND hwndParent, LPCWSTR pszHelpFile, DWORD dwHelpContext );
#endif
|