mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[SDK:XBOX] Add missing 'VOID' in empty function prototypes.
This commit is contained in:
parent
6db0d24fb6
commit
789a296c43
1 changed files with 5 additions and 5 deletions
|
@ -93,7 +93,7 @@ LpcDetectSuperIO(VOID)
|
|||
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
LpcGetIoBase()
|
||||
LpcGetIoBase(VOID)
|
||||
{
|
||||
ULONG Base = 0;
|
||||
|
||||
|
@ -108,7 +108,7 @@ LpcGetIoBase()
|
|||
#ifndef _BLDR_
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
LpcGetIoBaseMPU()
|
||||
LpcGetIoBaseMPU(VOID)
|
||||
{
|
||||
ULONG Base = 0;
|
||||
|
||||
|
@ -123,7 +123,7 @@ LpcGetIoBaseMPU()
|
|||
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
LpcGetIrqPrimary()
|
||||
LpcGetIrqPrimary(VOID)
|
||||
{
|
||||
return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_PRIMARY);
|
||||
}
|
||||
|
@ -131,14 +131,14 @@ LpcGetIrqPrimary()
|
|||
#ifndef _BLDR_
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
LpcGetIrqSecondary()
|
||||
LpcGetIrqSecondary(VOID)
|
||||
{
|
||||
return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_SECONDARY);
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
LpcGetDmaChannel()
|
||||
LpcGetDmaChannel(VOID)
|
||||
{
|
||||
return LpcReadRegister(LPC_CONFIG_DEVICE_DMA_CHANNEL);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue