Changeset 62680 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Jul 29, 2016 12:52:46 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109253
- Location:
- trunk/src/VBox/GuestHost/OpenGL/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.