From d5578a77f45451c0ac75256d9e08a7175da5b2fd Mon Sep 17 00:00:00 2001 From: Carlos Menezes Date: Sun, 28 Apr 2024 22:27:07 +0100 Subject: [PATCH] cleanup --- dllmain.cpp | 1 - framework.h | 5 ----- pch.cpp | 5 ----- pch.h | 13 ------------- 4 files changed, 24 deletions(-) delete mode 100644 framework.h delete mode 100644 pch.cpp delete mode 100644 pch.h diff --git a/dllmain.cpp b/dllmain.cpp index 05b0c5c..919d5de 100644 --- a/dllmain.cpp +++ b/dllmain.cpp @@ -1,4 +1,3 @@ -#include "pch.h" #include "dllmain.h" #include diff --git a/framework.h b/framework.h deleted file mode 100644 index 54b83e9..0000000 --- a/framework.h +++ /dev/null @@ -1,5 +0,0 @@ -#pragma once - -#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers -// Windows Header Files -#include diff --git a/pch.cpp b/pch.cpp deleted file mode 100644 index 64b7eef..0000000 --- a/pch.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// pch.cpp: source file corresponding to the pre-compiled header - -#include "pch.h" - -// When you are using pre-compiled headers, this source file is necessary for compilation to succeed. diff --git a/pch.h b/pch.h deleted file mode 100644 index 885d5d6..0000000 --- a/pch.h +++ /dev/null @@ -1,13 +0,0 @@ -// pch.h: This is a precompiled header file. -// Files listed below are compiled only once, improving build performance for future builds. -// This also affects IntelliSense performance, including code completion and many code browsing features. -// However, files listed here are ALL re-compiled if any one of them is updated between builds. -// Do not add files here that you will be updating frequently as this negates the performance advantage. - -#ifndef PCH_H -#define PCH_H - -// add headers that you want to pre-compile here -#include "framework.h" - -#endif //PCH_H