26 lines
566 B
C++
26 lines
566 B
C++
// header.h : include file for standard system include files,
|
|
// or project specific include files
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
// Windows Header Files
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <filesystem>
|
|
#include <string>
|
|
#include <strsafe.h>
|
|
#include <shellapi.h>
|
|
#include <windows.h>
|
|
#include <CommCtrl.h>
|
|
|
|
// C RunTime Header Files
|
|
//#include <stdlib.h>
|
|
//#include <malloc.h>
|
|
//#include <memory.h>
|
|
|
|
// Project Specific Header Files
|
|
#include "Logger.h"
|