diff options
-rw-r--r-- | dlog.h | 2 | ||||
-rw-r--r-- | int15ps2.h (renamed from ps2.h) | 6 | ||||
-rw-r--r-- | int1Apci.h (renamed from pci.h) | 10 | ||||
-rw-r--r-- | int4Bvds.h (renamed from vds.h) | 6 | ||||
-rw-r--r-- | mousetsr.c | 2 | ||||
-rw-r--r-- | mousmain.c | 2 | ||||
-rw-r--r-- | vbox.c | 4 | ||||
-rw-r--r-- | vbox.h | 2 |
8 files changed, 17 insertions, 17 deletions
@@ -24,7 +24,7 @@ // Customizable defines /** If 0, these routines become nops */ -#define ENABLE_DLOG 1 +#define ENABLE_DLOG 0 /** 1 means target serial port, 0 means target IO port. */ #define DLOG_TARGET_SERIAL 0 /** IO port to target. @@ -17,8 +17,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef PS2_H -#define PS2_H +#ifndef INT15PS2_H +#define INT15PS2_H #include <stdbool.h> #include <stdint.h> @@ -232,4 +232,4 @@ static bool ps2m_detect_wheel(void) return err == 0 && device_id == PS2M_DEVICE_ID_IMPS2; } -#endif +#endif /* INT15PS2_H */ @@ -17,10 +17,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef PCI_H -#define PCI_H +#ifndef INT1APCI_H +#define INT1APCI_H -typedef unsigned char pcierr; +typedef unsigned char pcierr; enum { PCI_SUCCESSFUL = 0, PCI_GENERIC_ERROR = 1, @@ -32,7 +32,7 @@ enum { PCI_BUFFER_TOO_SMALL = 0x89 }; -typedef unsigned short pcisel; +typedef unsigned short pcisel; static pcierr pci_init_bios(void); #pragma aux pci_init_bios = \ @@ -119,4 +119,4 @@ static pcierr pci_write_config_dword(pcisel sel, unsigned char reg, unsigned lon __value [ah] \ __modify [ax cx] -#endif +#endif /* INT1APCI_H */ @@ -17,8 +17,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef VDS_H -#define VDS_H +#ifndef INT4BVDS_H +#define INT4BVDS_H #include <stdbool.h> #include <stdint.h> @@ -159,4 +159,4 @@ static vdserr vds_release_dma_buffer(VDSDDS __far * dds, unsigned char flags); __value [al] \ __modify [ax] -#endif +#endif /* INT4BVDS_H */ @@ -22,7 +22,7 @@ #include <i86.h> #include "dlog.h" -#include "ps2.h" +#include "int15ps2.h" #include "int10vga.h" #include "int16kbd.h" #include "int2fwin.h" @@ -26,7 +26,7 @@ #include "dlog.h" #include "int33.h" #include "int21dos.h" -#include "ps2.h" +#include "int15ps2.h" #include "vbox.h" #include "vmware.h" #include "dostsr.h" @@ -24,8 +24,8 @@ #include "dlog.h" #include "utils.h" -#include "pci.h" -#include "vds.h" +#include "int1Apci.h" +#include "int4Bvds.h" #include "vboxdev.h" #include "vbox.h" @@ -27,7 +27,7 @@ #include <string.h> #include "dlog.h" -#include "vds.h" +#include "int4Bvds.h" #include "utils.h" #include "vboxdev.h" |