summaryrefslogtreecommitdiff
path: root/src/md/inc
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-14 20:37:29 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-14 21:24:03 -0800
commited1f4b5ea3b3f3855c59df3d5cb76faf672c9148 (patch)
treee6eb40c3d2fb5be6acb00712909a0e85a71fd8c5 /src/md/inc
parentacab86b13f5d416393c6490292728f03583eee8b (diff)
downloadcoreclr-ed1f4b5ea3b3f3855c59df3d5cb76faf672c9148.tar.gz
coreclr-ed1f4b5ea3b3f3855c59df3d5cb76faf672c9148.tar.bz2
coreclr-ed1f4b5ea3b3f3855c59df3d5cb76faf672c9148.zip
Remove never defined FEATURE_METADATA_STANDALONE_WINRT_RO
Diffstat (limited to 'src/md/inc')
-rw-r--r--src/md/inc/stgio.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/md/inc/stgio.h b/src/md/inc/stgio.h
index 96a2f1dddb..2ec873d4c8 100644
--- a/src/md/inc/stgio.h
+++ b/src/md/inc/stgio.h
@@ -46,10 +46,8 @@ enum DBPROPMODE
{ DBPROP_TMODEF_READ = 0x1,
DBPROP_TMODEF_WRITE = 0x2,
DBPROP_TMODEF_EXCLUSIVE = 0x4,
-#ifndef FEATURE_METADATA_STANDALONE_WINRT_RO
// Shared memory uses ole32.dll - we cannot depend on it in the standalone WinRT Read-Only DLL
DBPROP_TMODEF_SHAREDMEM = 0x8,
-#endif
DBPROP_TMODEF_CREATE = 0x10,
DBPROP_TMODEF_FAILIFTHERE = 0x20,
DBPROP_TMODEF_SLOWSAVE = 0x100,
@@ -77,10 +75,8 @@ enum STGIOTYPE
STGIO_HMODULE = 2, // The file was loaded via LoadLibrary as module.
STGIO_STREAM = 3, // Stream pointer has data.
STGIO_MEM = 4, // In memory pointer has data.
-#ifndef FEATURE_METADATA_STANDALONE_WINRT_RO
// Shared memory uses ole32.dll - we cannot depend on it in the standalone WinRT Read-Only DLL
STGIO_SHAREDMEM = 5, // Shared memory handle.
-#endif
STGIO_HFILEMEM = 6 // Handle open, but memory allocated.
};