- Timestamp:
- Aug 1, 2016 12:20:49 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109399
- Location:
- trunk/src/VBox/GuestHost/OpenGL
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/GL/glext.h
r50041 r62812 31 31 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) 32 32 #define WIN32_LEAN_AND_MEAN 1 33 # ifdef VBOX 34 # include <iprt/win/windows.h> 35 # else 33 36 #include <windows.h> 37 # endif 34 38 #endif 35 39 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_pack.h
r52452 r62812 94 94 95 95 #if !defined(IN_RING0) 96 # define CR_PACKER_CONTEXT_ARGSINGLEDECL 96 # define CR_PACKER_CONTEXT_ARGSINGLEDECL void 97 97 # define CR_PACKER_CONTEXT_ARGDECL 98 98 # define CR_PACKER_CONTEXT_ARG -
trunk/src/VBox/GuestHost/OpenGL/include/cr_process.h
r15532 r62812 10 10 #ifdef WINDOWS 11 11 #define WIN32_LEAN_AND_MEAN 12 # ifdef VBOX 13 # include <iprt/win/windows.h> 14 # else 12 15 #include <windows.h> 16 # endif 13 17 #endif 14 18 -
trunk/src/VBox/GuestHost/OpenGL/include/cr_threads.h
r57421 r62812 19 19 #ifdef WINDOWS 20 20 #define WIN32_LEAN_AND_MEAN 21 # ifdef VBOX 22 # include <iprt/win/windows.h> 23 # else 21 24 #include <windows.h> 25 # endif 22 26 #else 23 27 #include <pthread.h> -
trunk/src/VBox/GuestHost/OpenGL/include/cr_timer.h
r15532 r62812 10 10 #endif 11 11 #else 12 # ifdef VBOX 13 # include <iprt/win/windows.h> 14 # else 12 15 #include <windows.h> 16 # endif 13 17 #endif 14 18 -
trunk/src/VBox/GuestHost/OpenGL/packer/pack_visibleregion.c
r62492 r62812 1 /* $Id$ */ 1 2 /** @file 2 3 * VBox Packing VisibleRegion information … … 20 21 21 22 #ifdef WINDOWS 22 # include <windows.h>23 # include <iprt/win/windows.h> 23 24 #endif 24 25 … … 54 55 crError( "crPackWindowVisibleRegionSWAP unimplemented and shouldn't be called" ); 55 56 } 57 -
trunk/src/VBox/GuestHost/OpenGL/spu_loader/glloader.py
r46660 r62812 24 24 #include <stdio.h> 25 25 #if defined(WINDOWS) 26 # ifdef VBOX 27 # include <iprt/win/windows.h> 28 # else 26 29 #include <windows.h> 30 # endif 27 31 #include <process.h> 28 32 #include <direct.h> -
trunk/src/VBox/GuestHost/OpenGL/util/dll.c
r53726 r62812 20 20 21 21 #ifdef WINDOWS 22 # ifdef VBOX 23 # include <iprt/win/shlwapi.h> 24 # else 22 25 #include <Shlwapi.h> 26 # endif 23 27 #endif 24 28 -
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r62492 r62812 28 28 29 29 #ifdef RT_OS_WINDOWS 30 # include < windows.h>30 # include <iprt/win/windows.h> 31 31 # include "cr_environment.h" 32 32 # include "cr_error.h" -
trunk/src/VBox/GuestHost/OpenGL/util/rand.c
r53726 r62812 9 9 #ifdef WINDOWS 10 10 #define WIN32_LEAN_AND_MEAN 11 # ifdef VBOX 12 # include <iprt/win/windows.h> 13 # else 11 14 #include <windows.h> 15 # endif 12 16 #else 13 17 #include <sys/time.h> -
trunk/src/VBox/GuestHost/OpenGL/util/timer.c
r53726 r62812 13 13 #else 14 14 #define WIN32_LEAN_AND_MEAN 15 # ifdef VBOX 16 # include <iprt/win/windows.h> 17 # else 15 18 #include <windows.h> 19 # endif 16 20 #endif 17 21 -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r62680 r62812 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 17 18 #ifdef RT_OS_WINDOWS 18 19 # include <iprt/win/windows.h>
Note:
See TracChangeset
for help on using the changeset viewer.