summaryrefslogtreecommitdiffstats
path: root/Examples/WhisperDesktop/framework.h
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-01-16 14:52:43 +0100
committerKonstantin <const@const.me>2023-01-16 14:52:43 +0100
commit8c4603c73675958efc960fbd4bb599a2909d106a (patch)
tree714dc6fc9a1672d5fd7f89676b97e10959662abc /Examples/WhisperDesktop/framework.h
parent990a8d0dbaefc996244097397259e92758b15cce (diff)
Source codes
Diffstat (limited to 'Examples/WhisperDesktop/framework.h')
-rw-r--r--Examples/WhisperDesktop/framework.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Examples/WhisperDesktop/framework.h b/Examples/WhisperDesktop/framework.h
new file mode 100644
index 0000000..b52a644
--- /dev/null
+++ b/Examples/WhisperDesktop/framework.h
@@ -0,0 +1,22 @@
+#pragma once
+#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
+#define NOMINMAX
+// Windows Header Files
+#include "targetver.h"
+#include <windows.h>
+// ATL header files
+#include <atlstr.h>
+#include <atlfile.h>
+#include <atlbase.h>
+#include <atlwin.h>
+
+// C RunTime Header Files
+#include <stdlib.h>
+#include <malloc.h>
+#include <memory.h>
+#include <tchar.h>
+#include <assert.h>
+// C++ headers
+#include <vector>
+#include <array>
+#include <algorithm> \ No newline at end of file