fixed compiler warnings and cvsignore files

svn path=/trunk/; revision=6102
This commit is contained in:
Thomas Bluemel 2003-09-20 20:12:43 +00:00
parent b2869f7a74
commit 174238220d
18 changed files with 93 additions and 90 deletions

View file

@ -1,7 +1,7 @@
base.tmp
junk.tmp
temp.exp
beep.coff
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys

View file

@ -1,4 +1,4 @@
/* $Id: beep.c,v 1.15 2002/10/21 17:05:32 hbirr Exp $
/* $Id: beep.c,v 1.16 2003/09/20 20:12:43 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -247,11 +247,11 @@ DriverEntry(PDRIVER_OBJECT DriverObject,
DPRINT("Beep Device Driver 0.0.3\n");
DriverObject->Flags = 0;
DriverObject->MajorFunction[IRP_MJ_CREATE] = BeepCreate;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = BeepClose;
DriverObject->MajorFunction[IRP_MJ_CLEANUP] = BeepCleanup;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = BeepDeviceControl;
DriverObject->DriverUnload = BeepUnload;
DriverObject->MajorFunction[IRP_MJ_CREATE] = (PDRIVER_DISPATCH)BeepCreate;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = (PDRIVER_DISPATCH)BeepClose;
DriverObject->MajorFunction[IRP_MJ_CLEANUP] = (PDRIVER_DISPATCH)BeepCleanup;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = (PDRIVER_DISPATCH)BeepDeviceControl;
DriverObject->DriverUnload = (PDRIVER_UNLOAD)BeepUnload;
Status = IoCreateDevice(DriverObject,
sizeof(DEVICE_EXTENSION),

View file

@ -1,7 +1,7 @@
base.tmp
junk.tmp
temp.exp
blue.coff
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys

View file

@ -1,8 +1,8 @@
base.tmp
junk.tmp
temp.exp
bootvid.coff
*.sym
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -1,4 +1,4 @@
/* $Id: bootvid.c,v 1.2 2003/08/25 12:27:45 dwelch Exp $
/* $Id: bootvid.c,v 1.3 2003/09/20 20:12:43 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -359,7 +359,7 @@ InbvInitVGAMode(VOID)
}
BOOLEAN
BOOL
STDCALL
VidResetDisplay(VOID)
{

View file

@ -1,8 +1,8 @@
base.tmp
junk.tmp
temp.exp
debugout.coff
*.sym
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -1,5 +1,8 @@
floppy.coff
*.sys
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -541,12 +541,12 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
DPRINT("Floppy driver\n");
/* Export other driver entry points... */
DriverObject->MajorFunction[IRP_MJ_CREATE] = FloppyDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = FloppyDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_READ] = FloppyDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_WRITE] = FloppyDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_CREATE] = (PDRIVER_DISPATCH)FloppyDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = (PDRIVER_DISPATCH)FloppyDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_READ] = (PDRIVER_DISPATCH)FloppyDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_WRITE] = (PDRIVER_DISPATCH)FloppyDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] =
FloppyDispatchDeviceControl;
(PDRIVER_DISPATCH)FloppyDispatchDeviceControl;
/* Try to detect controller and abort if it fails */
if (!FloppyCreateController(DriverObject,

View file

@ -1,8 +1,8 @@
base.tmp
junk.tmp
temp.exp
ide.coff
*.sys
*.sym
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -1,4 +1,4 @@
/* $Id: ide.c,v 1.58 2003/07/21 21:53:46 royce Exp $
/* $Id: ide.c,v 1.59 2003/09/20 20:12:43 weiden Exp $
*
* IDE.C - IDE Disk driver
* written by Rex Jolliff
@ -242,13 +242,13 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
/* Export other driver entry points... */
DriverObject->DriverStartIo = IDEStartIo;
DriverObject->MajorFunction[IRP_MJ_CREATE] = IDEDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = IDEDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_READ] = IDEDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_WRITE] = IDEDispatchReadWrite;
// DriverObject->MajorFunction[IRP_MJ_QUERY_INFORMATION] = IDEDispatchQueryInformation;
// DriverObject->MajorFunction[IRP_MJ_SET_INFORMATION] = IDEDispatchSetInformation;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = IDEDispatchDeviceControl;
DriverObject->MajorFunction[IRP_MJ_CREATE] = (PDRIVER_DISPATCH)IDEDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = (PDRIVER_DISPATCH)IDEDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_READ] = (PDRIVER_DISPATCH)IDEDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_WRITE] = (PDRIVER_DISPATCH)IDEDispatchReadWrite;
// DriverObject->MajorFunction[IRP_MJ_QUERY_INFORMATION] = (PDRIVER_DISPATCH)IDEDispatchQueryInformation;
// DriverObject->MajorFunction[IRP_MJ_SET_INFORMATION] = (PDRIVER_DISPATCH)IDEDispatchSetInformation;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = (PDRIVER_DISPATCH)IDEDispatchDeviceControl;
Status = IdeFindControllers(DriverObject);
if (NT_SUCCESS(Status))

View file

@ -1,8 +1,8 @@
base.tmp
junk.tmp
temp.exp
null.coff
*.sym
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -1,4 +1,4 @@
/* $Id: null.c,v 1.10 2002/09/08 10:22:05 chorns Exp $
/* $Id: null.c,v 1.11 2003/09/20 20:12:43 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -105,12 +105,12 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
NTSTATUS nErrCode;
/* register driver routines */
DriverObject->MajorFunction[IRP_MJ_CLOSE] = NullDispatch;
DriverObject->MajorFunction[IRP_MJ_CREATE] = NullDispatch;
DriverObject->MajorFunction[IRP_MJ_WRITE] = NullDispatch;
DriverObject->MajorFunction[IRP_MJ_READ] = NullDispatch;
/* DriverObject->MajorFunction[IRP_MJ_QUERY_INFORMATION] = NullDispatch; */
DriverObject->DriverUnload = NullUnload;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = (PDRIVER_DISPATCH)NullDispatch;
DriverObject->MajorFunction[IRP_MJ_CREATE] = (PDRIVER_DISPATCH)NullDispatch;
DriverObject->MajorFunction[IRP_MJ_WRITE] = (PDRIVER_DISPATCH)NullDispatch;
DriverObject->MajorFunction[IRP_MJ_READ] = (PDRIVER_DISPATCH)NullDispatch;
/* DriverObject->MajorFunction[IRP_MJ_QUERY_INFORMATION] = (PDRIVER_DISPATCH)NullDispatch; */
DriverObject->DriverUnload = (PDRIVER_UNLOAD)NullUnload;
/* create null device */
RtlInitUnicodeStringFromLiteral(&wstrDeviceName, L"\\Device\\Null");

View file

@ -1,8 +1,8 @@
base.tmp
junk.tmp
temp.exp
parallel.coff
parallel.sys
parallel.sys.unstripped
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -1,4 +1,4 @@
/* $Id: parallel.c,v 1.8 2002/08/20 20:37:05 hyperion Exp $
/* $Id: parallel.c,v 1.9 2003/09/20 20:12:43 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -145,9 +145,9 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
}
DeviceObject->Flags=0;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = Dispatch;
DriverObject->MajorFunction[IRP_MJ_CREATE] = Dispatch;
DriverObject->MajorFunction[IRP_MJ_WRITE] = Dispatch;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = (PDRIVER_DISPATCH)Dispatch;
DriverObject->MajorFunction[IRP_MJ_CREATE] = (PDRIVER_DISPATCH)Dispatch;
DriverObject->MajorFunction[IRP_MJ_WRITE] = (PDRIVER_DISPATCH)Dispatch;
DriverObject->DriverUnload = NULL;
return(STATUS_SUCCESS);

View file

@ -1,8 +1,8 @@
base.tmp
junk.tmp
temp.exp
ramdrv.coff
ramdrv.sys
ramdrv.sys.unstripped
*.tmp
*.exp
*.coff
*.d
*.o
*.sym
*.sys
*.map

View file

@ -101,11 +101,11 @@ NTSTATUS STDCALL DriverEntry(IN PDRIVER_OBJECT DriverObject,
DPRINT("Ramdisk driver\n");
/* Export other driver entry points... */
DriverObject->MajorFunction[IRP_MJ_CREATE] = RamdrvDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = RamdrvDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_READ] = RamdrvDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_WRITE] = RamdrvDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = RamdrvDispatchDeviceControl;
DriverObject->MajorFunction[IRP_MJ_CREATE] = (PDRIVER_DISPATCH)RamdrvDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = (PDRIVER_DISPATCH)RamdrvDispatchOpenClose;
DriverObject->MajorFunction[IRP_MJ_READ] = (PDRIVER_DISPATCH)RamdrvDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_WRITE] = (PDRIVER_DISPATCH)RamdrvDispatchReadWrite;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = (PDRIVER_DISPATCH)RamdrvDispatchDeviceControl;
// create device and symbolic link

View file

@ -1,9 +1,8 @@
base.tmp
junk.tmp
temp.exp
*.tmp
*.exp
*.coff
*.d
*.o
serial.coff
serial.sys
serial.sym
serial.nostrip.sys
*.sym
*.sys
*.map

View file

@ -233,12 +233,13 @@ DrvPaint(IN SURFOBJ *Surface,
}
}
/*
doBitBlt:
// If VGADDIPaint can't do it, VGADDIBitBlt can.. or it might just loop back
// here and we have a nice infinite loop
/* return( VGADDIBitBlt(Surface, (SURFOBJ *)NULL, (SURFOBJ *)NULL, ClipRegion,
return( VGADDIBitBlt(Surface, (SURFOBJ *)NULL, (SURFOBJ *)NULL, ClipRegion,
(XLATEOBJ *)NULL, &ClipRegion->rclBounds,
NULL, (POINTL *)NULL, Brush, BrushOrigin,
NULL) ); UNIMPLEMENTED */