parent
812eae05c7
commit
aa76f5f92e
|
@ -0,0 +1,22 @@
|
|||
#include "HelpDialogProc.h"
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
BOOL CALLBACK HelpDlgProc( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam )
|
||||
{
|
||||
switch( message )
|
||||
{
|
||||
case WM_INITDIALOG:
|
||||
return TRUE;
|
||||
|
||||
case WM_COMMAND:
|
||||
switch( LOWORD(wParam) )
|
||||
{
|
||||
case IDC_BTN_OK:
|
||||
EndDialog( hDlg, 0 );
|
||||
return TRUE;
|
||||
}
|
||||
break;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <windows.h>
|
||||
#include "resource.h"
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
BOOL CALLBACK HelpDlgProc( HWND, UINT, WPARAM, LPARAM );
|
Loading…
Reference in New Issue