Changeset 4014 in vbox for trunk/src/VBox/Devices/Parallel
- Timestamp:
- Aug 3, 2007 12:44:13 AM (17 years ago)
- Location:
- trunk/src/VBox/Devices/Parallel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Parallel/DevParallel.cpp
r3649 r4014 26 26 *******************************************************************************/ 27 27 #define LOG_GROUP LOG_GROUP_DEV_PARALLEL 28 #include <VBox/pdm.h> 29 #include <VBox/err.h> 30 31 #include <VBox/log.h> 28 #include <VBox/pdmdev.h> 32 29 #include <iprt/assert.h> 33 30 #include <iprt/uuid.h> -
trunk/src/VBox/Devices/Parallel/DrvHostParallel.cpp
r3666 r4014 24 24 *******************************************************************************/ 25 25 #define LOG_GROUP LOG_GROUP_DRV_HOST_PARALLEL 26 #include <VBox/pdm.h> 27 #include <VBox/err.h> 28 29 #include <VBox/log.h> 26 #include <VBox/pdmdrv.h> 30 27 #include <iprt/asm.h> 31 28 #include <iprt/assert.h> … … 34 31 35 32 #ifdef RT_OS_LINUX 36 # include <sys/ioctl.h>37 # include <sys/types.h>38 # include <sys/stat.h>39 # include <fcntl.h>40 # include <unistd.h>41 # include <linux/ppdev.h>42 # include <linux/parport.h>33 # include <sys/ioctl.h> 34 # include <sys/types.h> 35 # include <sys/stat.h> 36 # include <fcntl.h> 37 # include <unistd.h> 38 # include <linux/ppdev.h> 39 # include <linux/parport.h> 43 40 #endif 44 45 41 46 42 #include "Builtins.h" 47 43 #include "ParallelIOCtlCmd.h" 44 48 45 49 46 /******************************************************************************* 50 47 * Structures and Typedefs * 51 48 *******************************************************************************/ 52 53 49 /** 54 50 * Host parallel port driver instance data.
Note:
See TracChangeset
for help on using the changeset viewer.