mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 04:13:35 +00:00
- Unified & reformatted license headers according to https://www.reactos.org/wiki/Coding_Style - Minor style changes svn path=/branches/GSoC_2017/rapps/; revision=75815
28 lines
742 B
C++
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);
|
|
}
|