Commit 6599f573 authored by Owen Rudge's avatar Owen Rudge Committed by Alexandre Julliard

shell32: Add About dialog to Control Panel.

parent 9b2f6364
......@@ -360,6 +360,17 @@ static LRESULT WINAPI Control_WndProc(HWND hWnd, UINT wMsg,
SendMessageW(hWnd, WM_CLOSE, 0, 0);
return 0;
case IDM_CPANEL_ABOUT:
{
WCHAR appName[MAX_STRING_LEN];
LoadStringW(shell32_hInstance, IDS_CPANEL_TITLE, appName,
sizeof(appName) / sizeof(appName[0]));
ShellAboutW(hWnd, appName, NULL, NULL);
return 0;
}
case FCIDM_SHVIEW_BIGICON:
case FCIDM_SHVIEW_SMALLICON:
case FCIDM_SHVIEW_LISTVIEW:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment