2002-07-14 17:59:36 +00:00
|
|
|
/*
|
2003-08-22 05:55:14 +00:00
|
|
|
* Regedit About Dialog Box
|
2002-07-14 17:59:36 +00:00
|
|
|
*
|
2003-08-22 05:55:14 +00:00
|
|
|
* Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
|
2002-07-14 17:59:36 +00:00
|
|
|
*
|
2002-11-12 15:25:15 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-07-14 17:59:36 +00:00
|
|
|
*
|
2002-11-12 15:25:15 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2002-07-14 17:59:36 +00:00
|
|
|
*
|
2002-11-12 15:25:15 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-10-27 10:34:16 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-07-14 17:59:36 +00:00
|
|
|
*/
|
2003-08-22 05:55:14 +00:00
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#include "regedit.h"
|
2002-07-14 17:59:36 +00:00
|
|
|
|
2014-01-07 17:08:52 +00:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
2002-07-14 17:59:36 +00:00
|
|
|
void ShowAboutBox(HWND hWnd)
|
|
|
|
{
|
2012-10-03 22:42:34 +00:00
|
|
|
WCHAR AppStr[255];
|
|
|
|
LoadStringW(hInst, IDS_APP_TITLE, AppStr, COUNT_OF(AppStr));
|
2020-01-24 22:40:32 +00:00
|
|
|
ShellAboutW(hWnd, AppStr, NULL, LoadIconW(hInst, MAKEINTRESOURCEW(IDI_REGEDIT)));
|
2002-07-14 17:59:36 +00:00
|
|
|
}
|
2012-10-03 22:42:34 +00:00
|
|
|
|
|
|
|
/* EOF */
|