Files
reactos/reactos/base/applications/rapps/aboutdlg.cpp
T
Alexander Shaposhnikov b49140dc40 [RAPPS] License header unification and minor style changes
- Unified & reformatted license headers according to https://www.reactos.org/wiki/Coding_Style
- Minor style changes

svn path=/branches/GSoC_2017/rapps/; revision=75815
2017-09-09 20:38:06 +00:00

28 lines
742 B
C++

/*
* PROJECT: ReactOS Applications Manager
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* FILE: base/applications/rapps/aboutdlg.cpp
* PURPOSE: About Dialog
* COPYRIGHT: Copyright 2009 Dmitry Chapyshev ([email protected])
* Copyright 2017 Alexander Shaposhikov ([email protected])
*/
#include "defines.h"
static INT_PTR CALLBACK AboutDlgProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam)
{
if (Msg == WM_COMMAND && LOWORD(wParam) == IDOK)
{
return EndDialog(hDlg, LOWORD(wParam));
}
return FALSE;
}
VOID ShowAboutDialog()
{
DialogBoxW(hInst,
MAKEINTRESOURCEW(IDD_ABOUT_DIALOG),
hMainWnd,
AboutDlgProc);
}