summaryrefslogtreecommitdiffstats
path: root/src/common/microprofile.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-28 11:12:12 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-28 11:12:12 +0200
commit656d824b20315e3c264876be104d209e8cfc36c2 (patch)
treed3f04aa725a66c001af1a45be98d8f5c90165727 /src/common/microprofile.h
parentMerge pull request #1080 from yuriks/linear-heap-base-typo (diff)
downloadyuzu-656d824b20315e3c264876be104d209e8cfc36c2.tar
yuzu-656d824b20315e3c264876be104d209e8cfc36c2.tar.gz
yuzu-656d824b20315e3c264876be104d209e8cfc36c2.tar.bz2
yuzu-656d824b20315e3c264876be104d209e8cfc36c2.tar.lz
yuzu-656d824b20315e3c264876be104d209e8cfc36c2.tar.xz
yuzu-656d824b20315e3c264876be104d209e8cfc36c2.tar.zst
yuzu-656d824b20315e3c264876be104d209e8cfc36c2.zip
Diffstat (limited to 'src/common/microprofile.h')
-rw-r--r--src/common/microprofile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/microprofile.h b/src/common/microprofile.h
index 9eb6016a8..d3b6cb97c 100644
--- a/src/common/microprofile.h
+++ b/src/common/microprofile.h
@@ -11,6 +11,11 @@
#define MICROPROFILE_CONTEXT_SWITCH_TRACE 0
#define MICROPROFILE_PER_THREAD_BUFFER_SIZE (2048<<12) // 8 MB
+#ifdef _WIN32
+// This isn't defined by the standard library in MSVC2015
+typedef void* HANDLE;
+#endif
+
#include <microprofile.h>
#define MP_RGB(r, g, b) ((r) << 16 | (g) << 8 | (b) << 0)