[VGAFONTEDIT] Use the new header with SPDX license identifier and make the entire...
[reactos.git] / rosapps / applications / devutils / vgafontedit / aboutdlg.c
1 /*
2 * PROJECT: ReactOS VGA Font Editor
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: About dialog
5 * COPYRIGHT: Copyright 2008 Colin Finck (colin@reactos.org)
6 */
7
8 #include "precomp.h"
9
10 INT_PTR CALLBACK
11 AboutDlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
12 {
13 UNREFERENCED_PARAMETER(lParam);
14
15 switch(uMsg)
16 {
17 case WM_COMMAND:
18 if( LOWORD(wParam) == IDCANCEL )
19 {
20 EndDialog(hwnd, 0);
21 return TRUE;
22 }
23 break;
24
25 case WM_INITDIALOG:
26 return TRUE;
27 }
28
29 return FALSE;
30 }