mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
41 lines
815 B
C
41 lines
815 B
C
![]() |
/*
|
||
|
* PROJECT: ReactOS Applications Manager
|
||
|
* LICENSE: GPL - See COPYING in the top level directory
|
||
|
* FILE: base/applications/rapps/aboutdlg.c
|
||
|
* PURPOSE: About Dialog
|
||
|
* PROGRAMMERS: Dmitry Chapyshev (dmitry@reactos.org)
|
||
|
*/
|
||
|
|
||
|
#include "rapps.h"
|
||
|
|
||
|
|
||
|
static
|
||
|
INT_PTR CALLBACK
|
||
|
AboutDlgProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam)
|
||
|
{
|
||
|
switch (Msg)
|
||
|
{
|
||
|
case WM_COMMAND:
|
||
|
{
|
||
|
switch (LOWORD(wParam))
|
||
|
{
|
||
|
case IDOK:
|
||
|
EndDialog(hDlg, LOWORD(wParam));
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
VOID
|
||
|
ShowAboutDialog(VOID)
|
||
|
{
|
||
|
DialogBox(hInst,
|
||
|
MAKEINTRESOURCE(IDD_ABOUT_DIALOG),
|
||
|
hMainWnd,
|
||
|
AboutDlgProc);
|
||
|
}
|