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.
 
 
 
 
 
 

61 lines
1.4 KiB

/****************************************************************************
Copyright (c) Microsoft Corporation 1998
All rights reserved
File: SUMMARY.CPP
***************************************************************************/
#include "pch.h"
#include "callback.h"
#include "utils.h"
//
// SummaryDlgProc()
//
INT_PTR CALLBACK
SummaryDlgProc(
HWND hDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam )
{
UNREFERENCED_PARAMETER(wParam);
switch (uMsg)
{
case WM_INITDIALOG:
SetDialogFont( hDlg, IDC_TITLE, DlgFontTitle );
break;
default:
return FALSE;
case WM_NOTIFY:
SetWindowLongPtr( hDlg, DWLP_MSGRESULT, FALSE );
LPNMHDR lpnmhdr = (LPNMHDR) lParam;
switch ( lpnmhdr->code )
{
case PSN_WIZNEXT:
break;
case PSN_QUERYCANCEL:
return VerifyCancel( hDlg );
case PSN_SETACTIVE:
SetDlgItemText( hDlg, IDC_S_SERVERNAME, g_ServerName );
SetDlgItemText( hDlg, IDC_S_DIRECTORY, g_MirrorDir );
SetDlgItemText( hDlg, IDC_E_DESCRIPTION, g_Description );
SetDlgItemText( hDlg, IDC_E_HELPTEXT, g_HelpText );
PropSheet_SetWizButtons( GetParent( hDlg ), PSWIZB_NEXT | PSWIZB_BACK );
ClearMessageQueue( );
break;
}
break;
}
return TRUE;
}