Added globals.h header file for global variables.

This commit is contained in:
2023-05-20 12:51:45 +03:00
parent bb904723fa
commit 9fe46f867c
5 changed files with 19 additions and 9 deletions

View File

@@ -7,6 +7,7 @@
// TODO: Make x64 version.
//
#include "framework.h"
#include "globals.h"
#include "logger.h"
#include "wCenterWindow.h"
@@ -20,7 +21,7 @@
// Global variables:
HINSTANCE hInst; // Instance
extern WCHAR szTitle[];
WCHAR szTitle[MAX_LOADSTRING]; // wCenterWindow's title
WCHAR szClass[MAX_LOADSTRING]; // Window's class
WCHAR szWinTitle[256];
WCHAR szWinClass[256];