Changeset 62950 in vbox
- Timestamp:
- Aug 4, 2016 7:08:40 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109553
- Location:
- trunk/src/VBox/Devices/Graphics/shaderlib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/shaderlib/libWineStub/debug.c
r62948 r62950 35 35 # include <iprt/win/objbase.h> 36 36 # include <wine/wined3d.h> 37 # include <iprt/win/windows.h> 37 # ifdef _MSC_VER 38 # include <iprt/win/windows.h> 39 # else 40 # include <windows.h> 41 # endif 38 42 #else 39 43 #include <objbase.h> -
trunk/src/VBox/Devices/Graphics/shaderlib/utils.c
r62949 r62950 19 19 #include <iprt/mem.h> 20 20 #include <iprt/assert.h> 21 #ifdef RT_OS_WINDOWS21 #ifdef _MSC_VER 22 22 # include <iprt/win/windows.h> 23 23 #else -
trunk/src/VBox/Devices/Graphics/shaderlib/vboxext.h
r62920 r62950 21 21 22 22 #ifdef VBOX_WINE_WITHOUT_LIBWINE 23 # include <iprt/win/windows.h> 23 # ifdef _MSC_VER 24 # include <iprt/win/windows.h> 25 # else 26 # include <windows.h> 27 # endif 24 28 #endif 25 29 -
trunk/src/VBox/Devices/Graphics/shaderlib/wined3d_private.h
r62948 r62950 47 47 #include "winuser.h" 48 48 #else 49 # include <iprt/win/windows.h> 49 # ifdef _MSC_VER 50 # include <iprt/win/windows.h> 51 # else 52 # include <windows.h> 53 # undef cdecl /* see windef.h */ 54 # endif 50 55 #endif 51 56 #include "wine/debug.h" … … 80 85 # define VBoxTlsRefSetImpl(_tls, _val) (TlsSetValue((DWORD)(_tls), (_val))) 81 86 # define VBoxTlsRefAssertImpl Assert 82 # undef cdecl /* see windef.h */83 87 # include <VBox/VBoxVideo3D.h> 84 88 #endif
Note:
See TracChangeset
for help on using the changeset viewer.