- STDCALL/STDCALL_FUNC usage fixes

svn path=/trunk/; revision=8133
This commit is contained in:
Filip Navara 2004-02-10 18:11:12 +00:00
parent 8ccf098ee6
commit b00626d582
5 changed files with 10 additions and 10 deletions

View file

@ -238,7 +238,7 @@ NdisImmediateWritePortUshort(
}
IO_ALLOCATION_ACTION NdisMapRegisterCallback (
IO_ALLOCATION_ACTION STDCALL NdisMapRegisterCallback (
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PVOID MapRegisterBase,

View file

@ -382,7 +382,7 @@ MiniEthReceiveIndication(
}
VOID
VOID STDCALL
MiniResetComplete(
IN NDIS_HANDLE MiniportAdapterHandle,
IN NDIS_STATUS Status,
@ -392,7 +392,7 @@ MiniResetComplete(
}
VOID
VOID STDCALL
MiniSendComplete(
IN NDIS_HANDLE MiniportAdapterHandle,
IN PNDIS_PACKET Packet,
@ -419,7 +419,7 @@ MiniSendComplete(
}
VOID
VOID STDCALL
MiniSendResourcesAvailable(
IN NDIS_HANDLE MiniportAdapterHandle)
{
@ -1162,7 +1162,7 @@ NdisMQueryInformationComplete(
}
VOID NdisIBugcheckCallback(
VOID STDCALL NdisIBugcheckCallback(
IN PVOID Buffer,
IN ULONG Length)
/*

View file

@ -373,7 +373,7 @@ ProSend(
}
VOID
VOID STDCALL
ProSendPackets(
IN NDIS_HANDLE NdisBindingHandle,
IN PPNDIS_PACKET PacketArray,

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: input.c,v 1.26 2004/02/07 15:39:14 navaraf Exp $
/* $Id: input.c,v 1.27 2004/02/10 18:11:12 navaraf Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -141,7 +141,7 @@ MouseThreadMain(PVOID StartContext)
}
#endif
VOID STDCALL_FUNC STATIC
STATIC VOID STDCALL
KeyboardThreadMain(PVOID StartContext)
{
UNICODE_STRING KeyboardDeviceName;

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: timer.c,v 1.21 2004/01/18 22:29:38 gdalsnes Exp $
/* $Id: timer.c,v 1.22 2004/02/10 18:11:12 navaraf Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -384,7 +384,7 @@ IntKillTimer(HWND hWnd, UINT_PTR uIDEvent, BOOL SystemTimer)
}
extern VOID STDCALL ValidateNonPagedPool(VOID);
static VOID STDCALL_FUNC
static VOID STDCALL
TimerThreadMain(PVOID StartContext)
{
NTSTATUS Status;