mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
- get mpu401, parallel and ramdrv to work on msvc.
svn path=/trunk/; revision=20648
This commit is contained in:
parent
189147d4c4
commit
6b36b1e871
6 changed files with 21 additions and 21 deletions
|
@ -23,7 +23,7 @@
|
|||
|
||||
/* INTERNAL VARIABLES ******************************************************/
|
||||
|
||||
UINT DeviceCount = 0;
|
||||
ULONG DeviceCount = 0;
|
||||
|
||||
|
||||
/* FUNCTIONS ***************************************************************/
|
||||
|
@ -205,7 +205,7 @@ MPU401Cleanup(PDEVICE_OBJECT DeviceObject,
|
|||
* RETURNS: Success or failure
|
||||
*/
|
||||
{
|
||||
UINT Channel;
|
||||
ULONG Channel;
|
||||
DPRINT("MPU401Cleanup() called!\n");
|
||||
|
||||
// Reset the device (should we do this?)
|
||||
|
@ -240,8 +240,8 @@ MPU401DeviceControl(PDEVICE_OBJECT DeviceObject,
|
|||
{
|
||||
PIO_STACK_LOCATION Stack;
|
||||
PDEVICE_EXTENSION DeviceExtension;
|
||||
UINT ByteCount;
|
||||
PBYTE Data;
|
||||
ULONG ByteCount;
|
||||
PUCHAR Data;
|
||||
|
||||
DPRINT("MPU401DeviceControl() called!\n");
|
||||
|
||||
|
@ -256,7 +256,7 @@ MPU401DeviceControl(PDEVICE_OBJECT DeviceObject,
|
|||
case IOCTL_MIDI_PLAY :
|
||||
{
|
||||
DPRINT("Received IOCTL_MIDI_PLAY\n");
|
||||
Data = (PBYTE) Irp->AssociatedIrp.SystemBuffer;
|
||||
Data = (PUCHAR) Irp->AssociatedIrp.SystemBuffer;
|
||||
|
||||
DPRINT("Sending %d bytes of MIDI data to 0x%d:\n", Stack->Parameters.DeviceIoControl.InputBufferLength, DeviceExtension->Port);
|
||||
|
||||
|
|
|
@ -85,8 +85,8 @@ typedef struct _DEVICE_EXTENSION
|
|||
{
|
||||
PUNICODE_STRING RegistryPath;
|
||||
PDRIVER_OBJECT DriverObject;
|
||||
UINT Port;
|
||||
UINT IRQ;
|
||||
ULONG Port;
|
||||
ULONG IRQ;
|
||||
// KDPC Dpc;
|
||||
// KTIMER Timer;
|
||||
// KEVENT Event;
|
||||
|
@ -110,8 +110,8 @@ typedef struct _DEVICE_INSTANCE
|
|||
|
||||
//typedef struct _CONFIG
|
||||
//{
|
||||
// UINT Port;
|
||||
// UINT IRQ;
|
||||
// ULONG Port;
|
||||
// ULONG IRQ;
|
||||
//} CONFIG, *PCONFIG;
|
||||
|
||||
/*
|
||||
|
@ -126,9 +126,9 @@ typedef REGISTRY_CALLBACK_ROUTINE *PREGISTRY_CALLBACK_ROUTINE;
|
|||
Prototypes for functions in portio.c :
|
||||
*/
|
||||
|
||||
BOOLEAN WaitToSend(UINT BasePort);
|
||||
BOOLEAN WaitToReceive(UINT BasePort);
|
||||
BOOLEAN InitUARTMode(UINT BasePort);
|
||||
BOOLEAN WaitToSend(ULONG BasePort);
|
||||
BOOLEAN WaitToReceive(ULONG BasePort);
|
||||
BOOLEAN InitUARTMode(ULONG BasePort);
|
||||
|
||||
/*
|
||||
Prototypes for functions in settings.c :
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "mpu401.h"
|
||||
|
||||
|
||||
BOOLEAN WaitToSend(UINT BasePort)
|
||||
BOOLEAN WaitToSend(ULONG BasePort)
|
||||
{
|
||||
int TimeOut;
|
||||
|
||||
|
@ -37,7 +37,7 @@ BOOLEAN WaitToSend(UINT BasePort)
|
|||
}
|
||||
|
||||
|
||||
BOOLEAN WaitToReceive(UINT BasePort)
|
||||
BOOLEAN WaitToReceive(ULONG BasePort)
|
||||
{
|
||||
int TimeOut;
|
||||
|
||||
|
@ -61,9 +61,9 @@ BOOLEAN WaitToReceive(UINT BasePort)
|
|||
}
|
||||
|
||||
|
||||
BOOLEAN InitUARTMode(UINT BasePort)
|
||||
BOOLEAN InitUARTMode(ULONG BasePort)
|
||||
{
|
||||
UINT TimeOut;
|
||||
ULONG TimeOut;
|
||||
UCHAR Status = 0;
|
||||
|
||||
DbgPrint("InitUARTMode() called\n");
|
||||
|
|
|
@ -83,7 +83,7 @@ Dispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
|||
{
|
||||
PIO_STACK_LOCATION Stack = IoGetCurrentIrpStackLocation(Irp);
|
||||
NTSTATUS status;
|
||||
UINT i;
|
||||
ULONG i;
|
||||
|
||||
switch (Stack->MajorFunction)
|
||||
{
|
||||
|
|
|
@ -98,7 +98,7 @@ NTSTATUS STDCALL DriverEntry(IN PDRIVER_OBJECT DriverObject,
|
|||
void *tbuff;
|
||||
unsigned int dstlen = 1024 * 1440;
|
||||
FILE_STANDARD_INFORMATION finfo;
|
||||
DWORD err;
|
||||
ULONG err;
|
||||
|
||||
DPRINT("Ramdisk driver\n");
|
||||
|
||||
|
|
|
@ -308,9 +308,9 @@ BZ_EXTERN const char * BZ_API(BZ2_bzerror) (
|
|||
);
|
||||
#endif
|
||||
|
||||
extern _stdcall void *(*BZ2_malloc)( unsigned long size );
|
||||
extern _stdcall void (*BZ2_free)( void *ptr );
|
||||
_stdcall void BZ2_set_malloc_free( _stdcall void *(*malloc)(unsigned long size), _stdcall void (*free)(void *ptr) );
|
||||
extern void *(_stdcall *BZ2_malloc)( unsigned long size );
|
||||
extern void (*_stdcall BZ2_free)( void *ptr );
|
||||
void _stdcall BZ2_set_malloc_free( void *(_stdcall *malloc)(unsigned long size), void (_stdcall *free)(void *ptr) );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue