Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenaboutdlg.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Applications Manager 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: base/applications/rapps/aboutdlg.c 00005 * PURPOSE: About Dialog 00006 * PROGRAMMERS: Dmitry Chapyshev (dmitry@reactos.org) 00007 */ 00008 00009 #include "rapps.h" 00010 00011 00012 static 00013 INT_PTR CALLBACK 00014 AboutDlgProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam) 00015 { 00016 switch (Msg) 00017 { 00018 case WM_COMMAND: 00019 { 00020 switch (LOWORD(wParam)) 00021 { 00022 case IDOK: 00023 EndDialog(hDlg, LOWORD(wParam)); 00024 break; 00025 } 00026 } 00027 break; 00028 } 00029 00030 return FALSE; 00031 } 00032 00033 VOID 00034 ShowAboutDialog(VOID) 00035 { 00036 DialogBox(hInst, 00037 MAKEINTRESOURCE(IDD_ABOUT_DIALOG), 00038 hMainWnd, 00039 AboutDlgProc); 00040 } Generated on Mon May 28 2012 04:17:16 for ReactOS by
1.7.6.1
|