mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:45:53 +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
|
FORCEINLINE
|
||||||
ULONG
|
ULONG
|
||||||
LpcGetIoBase()
|
LpcGetIoBase(VOID)
|
||||||
{
|
{
|
||||||
ULONG Base = 0;
|
ULONG Base = 0;
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@ LpcGetIoBase()
|
||||||
#ifndef _BLDR_
|
#ifndef _BLDR_
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
ULONG
|
ULONG
|
||||||
LpcGetIoBaseMPU()
|
LpcGetIoBaseMPU(VOID)
|
||||||
{
|
{
|
||||||
ULONG Base = 0;
|
ULONG Base = 0;
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ LpcGetIoBaseMPU()
|
||||||
|
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
ULONG
|
ULONG
|
||||||
LpcGetIrqPrimary()
|
LpcGetIrqPrimary(VOID)
|
||||||
{
|
{
|
||||||
return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_PRIMARY);
|
return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_PRIMARY);
|
||||||
}
|
}
|
||||||
|
@ -131,14 +131,14 @@ LpcGetIrqPrimary()
|
||||||
#ifndef _BLDR_
|
#ifndef _BLDR_
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
ULONG
|
ULONG
|
||||||
LpcGetIrqSecondary()
|
LpcGetIrqSecondary(VOID)
|
||||||
{
|
{
|
||||||
return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_SECONDARY);
|
return LpcReadRegister(LPC_CONFIG_DEVICE_INTERRUPT_SECONDARY);
|
||||||
}
|
}
|
||||||
|
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
ULONG
|
ULONG
|
||||||
LpcGetDmaChannel()
|
LpcGetDmaChannel(VOID)
|
||||||
{
|
{
|
||||||
return LpcReadRegister(LPC_CONFIG_DEVICE_DMA_CHANNEL);
|
return LpcReadRegister(LPC_CONFIG_DEVICE_DMA_CHANNEL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue