make it easy to spot pesky debug builds

This commit is contained in:
freedom
2023-09-07 04:09:36 -06:00
parent 1b8ec3b152
commit cbe1fb7551
10 changed files with 18 additions and 3 deletions

View File

@@ -18,6 +18,11 @@
/* Variables */
// Global
#ifdef _DEBUG
BOOL bIsDebugBuild = TRUE;
#else
BOOL bIsDebugBuild = FALSE;
#endif
BOOL bIsDefaultShell = FALSE;
// Handles
HINSTANCE hAppInstance;
@@ -27,7 +32,7 @@ HWND hWndProgMgr = NULL;
HICON hProgMgrIcon = NULL;
HICON hGroupIcon = NULL;
// Global Strings
WCHAR szAppTitle[32];
WCHAR szAppTitle[64];
WCHAR szProgMgr[] = L"progmgr";
WCHAR szWebsite[64];
WCHAR szClass[16];