Changeset 62680 in vbox
- Timestamp:
- Jul 29, 2016 12:52:46 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/glext.h
r4172 r62680 31 31 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) 32 32 #define WIN32_LEAN_AND_MEAN 1 33 #include < windows.h>33 #include <iprt/win/windows.h> 34 34 #endif 35 35 -
trunk/include/VBox/HostServices/glxext.h
r4172 r62680 31 31 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) 32 32 #define WIN32_LEAN_AND_MEAN 1 33 #include < windows.h>33 #include <iprt/win/windows.h> 34 34 #endif 35 35 -
trunk/include/VBox/HostServices/wglext.h
r4172 r62680 31 31 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) 32 32 #define WIN32_LEAN_AND_MEAN 1 33 #include < windows.h>33 #include <iprt/win/windows.h> 34 34 #endif 35 35 -
trunk/include/VBox/VBoxDrvCfg-win.h
r62476 r62680 28 28 #define ___VBox_VBoxDrvCfg_win_h 29 29 30 #include < Windows.h>30 #include <iprt/win/windows.h> 31 31 #include <VBox/cdefs.h> 32 32 -
trunk/include/VBox/VBoxNetCfg-win.h
r62476 r62680 37 37 #define VBOXNETCFG_DELAYEDRENAME 38 38 39 #include < winsock2.h>40 #include < Windows.h>39 #include <iprt/win/winsock2.h> 40 #include <iprt/win/windows.h> 41 41 #include <Netcfgn.h> 42 42 #include <Setupapi.h> -
trunk/include/VBox/com/NativeEventQueue.h
r62476 r62680 28 28 29 29 #ifndef VBOX_WITH_XPCOM 30 # include < Windows.h>30 # include <iprt/win/windows.h> 31 31 #else 32 32 # include <nsEventQueueUtils.h> -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r62492 r62680 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox HGCM connection … … 17 16 */ 18 17 #ifdef RT_OS_WINDOWS 19 #include <windows.h>20 #include <ddraw.h>18 # include <iprt/win/windows.h> 19 # include <ddraw.h> 21 20 #else 22 #include <sys/ioctl.h>23 #include <errno.h>24 #include <fcntl.h>25 #include <string.h>26 #include <unistd.h>21 # include <sys/ioctl.h> 22 # include <errno.h> 23 # include <fcntl.h> 24 # include <string.h> 25 # include <unistd.h> 27 26 #endif 28 27 -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgsmi.c
r62492 r62680 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox HGCM connection … … 16 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 17 16 */ 17 18 18 //#define IN_GUEST 19 #ifdef IN_GUEST 19 #ifdef IN_GUEST /* entire file */ 20 20 21 #ifdef RT_OS_WINDOWS 21 #include <windows.h>22 #include <ddraw.h>22 # include <iprt/win/windows.h> 23 # include <ddraw.h> 23 24 #else 24 #include <sys/ioctl.h>25 #include <errno.h>26 #include <fcntl.h>27 #include <string.h>28 #include <unistd.h>25 # include <sys/ioctl.h> 26 # include <errno.h> 27 # include <fcntl.h> 28 # include <string.h> 29 # include <unistd.h> 29 30 #endif 30 31
Note:
See TracChangeset
for help on using the changeset viewer.