Moved headers from framework.h to wCenterWindow.h.

This commit is contained in:
2023-05-20 13:00:48 +03:00
parent 9fe46f867c
commit cf16651ae2
4 changed files with 14 additions and 14 deletions

View File

@@ -4,16 +4,3 @@
#pragma once #pragma once
#include "targetver.h" #include "targetver.h"
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files
#include <fstream>
#include <filesystem>
#include <string>
#include <strsafe.h>
#include <windows.h>
#include <shellapi.h>
#include <CommCtrl.h>
// Project Specific Header Files
#include "logger.h"
#include "VersionInfo.h"

View File

@@ -2,6 +2,7 @@
// globals.h // globals.h
// //
#pragma once #pragma once
#include "wCenterWindow.h"
#define MAX_LOADSTRING 50 #define MAX_LOADSTRING 50
#define TBUFLEN 32 #define TBUFLEN 32

View File

@@ -8,8 +8,8 @@
// //
#include "framework.h" #include "framework.h"
#include "globals.h" #include "globals.h"
#include "logger.h"
#include "wCenterWindow.h" #include "wCenterWindow.h"
#include "logger.h"
#define NO_DONATION #define NO_DONATION
#define KEY_I 0x49 #define KEY_I 0x49

View File

@@ -3,3 +3,15 @@
// //
#pragma once #pragma once
#include "resource.h" #include "resource.h"
// Windows Header Files
#include <fstream>
#include <filesystem>
#include <string>
#include <strsafe.h>
#include <windows.h>
#include <shellapi.h>
#include <CommCtrl.h>
// VerionInfo header file
#include "VersionInfo.h"