/*[]=====================================================================[]*/ /*[] LeadTools Run Time Library - Version 13 []*/ /*[] []*/ /*[] []*/ /*[] Copyright (c) 1991-2001 LEAD Technologies, Inc. []*/ /*[] All Rights Reserved. []*/ /*[]=====================================================================[]*/ #include "ImgPF.h" L_BOOL CALLBACK AboutDlgProc(HWND hDlg,UINT message, WPARAM wParam, LPARAM lParam) { switch(message) { case WM_INITDIALOG: return TRUE; case WM_CLOSE: EndDialog (hDlg, 0); return TRUE; case WM_COMMAND: switch(LOWORD (wParam)) { case IDCANCEL: case IDOK: EndDialog(hDlg , 0); return TRUE; } break; } return FALSE ; }