[CRT] Massively improve performance of rand_s
[reactos.git] / base / applications / regedit / about.c
index 5ac50c4..9925b36 100644 (file)
 
 #include "regedit.h"
 
+#include <shellapi.h>
+
 void ShowAboutBox(HWND hWnd)
 {
     WCHAR AppStr[255];
-    LoadStringW(hInst, IDS_APP_TITLE, AppStr, COUNT_OF(AppStr));
-    ShellAboutW(hWnd, AppStr, L"", LoadIconW(hInst, MAKEINTRESOURCEW(IDI_REGEDIT)));
+    LoadStringW(hInst, IDS_APP_TITLE, AppStr, ARRAY_SIZE(AppStr));
+    ShellAboutW(hWnd, AppStr, NULL, LoadIconW(hInst, MAKEINTRESOURCEW(IDI_REGEDIT)));
 }
 
 /* EOF */