mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
fix some PREfast warnings
svn path=/trunk/; revision=27438
This commit is contained in:
parent
676da8d7b8
commit
f974855d7e
1 changed files with 12 additions and 0 deletions
|
@ -15,6 +15,18 @@
|
||||||
#endif
|
#endif
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
|
static DRIVER_DISPATCH PciDispatchDeviceControl;
|
||||||
|
static NTSTATUS STDCALL PciDispatchDeviceControl(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp);
|
||||||
|
|
||||||
|
static DRIVER_ADD_DEVICE PciAddDevice;
|
||||||
|
static NTSTATUS STDCALL PciAddDevice(IN PDRIVER_OBJECT DriverObject, IN PDEVICE_OBJECT PhysicalDeviceObject);
|
||||||
|
|
||||||
|
static DRIVER_DISPATCH PciPowerControl;
|
||||||
|
static NTSTATUS STDCALL PciPowerControl(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp);
|
||||||
|
|
||||||
|
static DRIVER_DISPATCH PciPnpControl;
|
||||||
|
static NTSTATUS STDCALL PciPnpControl(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp);
|
||||||
|
|
||||||
|
|
||||||
#ifdef ALLOC_PRAGMA
|
#ifdef ALLOC_PRAGMA
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue