ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

aboutdlg.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.