1 /* 2 * Regedit About Dialog Box 3 * 4 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org> 5 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) 6 */ 7 8 #include "regedit.h" 9 10 #include <shellapi.h> 11 12 void ShowAboutBox(HWND hWnd) 13 { 14 WCHAR AppStr[255]; 15 LoadStringW(hInst, IDS_APP_TITLE, AppStr, ARRAY_SIZE(AppStr)); 16 ShellAboutW(hWnd, AppStr, NULL, LoadIconW(hInst, MAKEINTRESOURCEW(IDI_REGEDIT))); 17 } 18 19 /* EOF */ 20