Replaced macro calling.

The macro call has been replaced with a call to the Out() method of an instance of the CLogger class.
This commit is contained in:
2023-11-28 17:02:14 +03:00
parent 14ee12cb85
commit 1f8fb92dbe
3 changed files with 92 additions and 89 deletions

View File

@@ -4,6 +4,8 @@
#pragma once
#include "resource.h"
#define MAX_LOADSTRING 50
// Windows Header Files
#include <fstream>
#include <sstream>
@@ -17,6 +19,14 @@
#include <CommCtrl.h>
#include <process.h>
// Logger header file
#include "CLogger.h"
// VerionInfo header file
#include "VersionInfo.h"
// wCenterWindow's title
extern WCHAR szTitle[MAX_LOADSTRING];
// An instance of the "CLogger" class
extern CLogger logger;