37 lines
618 B
C++
37 lines
618 B
C++
// wCenterWindow
|
|
// wCenterWindow.h
|
|
//
|
|
#pragma once
|
|
#include "resource.h"
|
|
|
|
#define T0 10
|
|
#define T1 60
|
|
#define T2 86400
|
|
|
|
#define MAX_LOADSTRING 50
|
|
|
|
// Windows Header Files
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <filesystem>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <strsafe.h>
|
|
#include <windows.h>
|
|
#include <wininet.h>
|
|
#include <shellapi.h>
|
|
#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;
|