summaryrefslogtreecommitdiff
path: root/win.imp
diff options
context:
space:
mode:
authorTanninOne <seppleviathan@gmx.de>2016-02-10 18:37:28 +0100
committerTanninOne <seppleviathan@gmx.de>2016-02-10 18:37:28 +0100
commitba8464f01f5cd5340feea7163b9e51492c16fa8a (patch)
treef900f46ac4f14f8635533279bd434b06e6f3a94e /win.imp
parent5adb3b377ecd50a75dd034a49582a1da91b67e1c (diff)
parent0e9a86ebfc1a97742d0812a7b6ae8bb7f4662673 (diff)
Merge pull request #456 from ThosRTanner/issue/418
Refactor save game code into plugins
Diffstat (limited to 'win.imp')
-rw-r--r--win.imp10
1 files changed, 9 insertions, 1 deletions
diff --git a/win.imp b/win.imp
index cbecdc43..24635775 100644
--- a/win.imp
+++ b/win.imp
@@ -54,10 +54,18 @@
{ include: [ "<Shellapi.h>", "private", "<Windows.h>", "public" ] }, # official name according to website
{ include: [ "<shellapi.h>", "private", "<Windows.h>", "public" ] },
#
- { include: [ "<knownfolders.h>", "private", "<Windows.h>", "public" ] },
{ include: [ "<ShlObj.h>", "private", "<Windows.h>", "public" ] },
{ include: [ "<objidl.h>", "private", "<Windows.h>", "public" ] },
+# These ones are in shtypes.h but the only documentation I can find says
+# to include Knownfolders.h for these
+ { symbol: [ "REFKNOWNFOLDERID", "private", "<Knownfolders.h>", "public" ] },
+ { symbol: [ "KNOWNFOLDERID", "private", "<Knownfolders.h>", "public" ] },
+
+# IWYU doesn't understand upper/lower case which is *really* annoying on
+# windows, though to be fair I'm not sure M/S understand it either.
+ { include: [ "<knownfolders.h>", "private", "<Knownfolders.h>", "public" ] },
+
# Files that are included by other files which seem to then come for free in Windows.h but
# shouldn't. Again, should be cleaned up.