mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
Added missing STDCALLs.
svn path=/trunk/; revision=1960
This commit is contained in:
parent
e8c61143ed
commit
35850562c1
1 changed files with 6 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: null.c,v 1.4 2000/07/02 10:54:41 ekohl Exp $
|
||||
/* $Id: null.c,v 1.5 2001/06/12 12:36:58 ekohl Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -27,7 +27,8 @@ NTSTATUS NullRead(PIRP Irp, PIO_STACK_LOCATION stk)
|
|||
return(STATUS_END_OF_FILE);
|
||||
}
|
||||
|
||||
NTSTATUS NullDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
||||
NTSTATUS STDCALL
|
||||
NullDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
||||
/*
|
||||
* FUNCTION: Handles user mode requests
|
||||
* ARGUMENTS:
|
||||
|
@ -63,13 +64,13 @@ NTSTATUS NullDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
|||
return(status);
|
||||
}
|
||||
|
||||
NTSTATUS NullUnload(PDRIVER_OBJECT DriverObject)
|
||||
NTSTATUS STDCALL
|
||||
NullUnload(PDRIVER_OBJECT DriverObject)
|
||||
{
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
NTSTATUS STDCALL
|
||||
DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
|
||||
/*
|
||||
* FUNCTION: Called by the system to initalize the driver
|
||||
|
|
Loading…
Reference in a new issue