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
|
|
|
|
- Get autochk, calc, cmd, devmgr, expand, format, gettype, hostname, lsass, msconfig, msiexec, notepad, reactos, regedit, regsvr32, reporterror, rundll32, sc, services, servman, setup, sm, sndvol32 compiling on MSVC.
- PCHify some things.
- Reduce NDK usage.
svn path=/trunk/; revision=20703
2006-01-08 10:05:37 +00:00
|
|
|
#include <regedit.h>
|
2002-07-14 17:59:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
void ShowAboutBox(HWND hWnd)
|
|
|
|
{
|
2004-06-21 07:48:11 +00:00
|
|
|
TCHAR AppStr[255];
|
|
|
|
LoadString(hInst, IDS_APP_TITLE, AppStr, sizeof(AppStr)/sizeof(TCHAR));
|
|
|
|
ShellAbout(hWnd, AppStr, _T(""), LoadIcon(hInst, MAKEINTRESOURCE(IDI_REGEDIT)));
|
2002-07-14 17:59:36 +00:00
|
|
|
}
|