Build stub HAL with w32api

svn path=/trunk/; revision=16035
This commit is contained in:
Alex Ionescu 2005-06-18 14:27:44 +00:00
parent 01251016ad
commit a5579f945f
2 changed files with 6 additions and 4 deletions

View file

@ -737,7 +737,7 @@ KdPortEnableInterrupts()
return FALSE;
}
#undef KeAcquireSpinLock
VOID
STDCALL
KeAcquireSpinLock(
@ -797,7 +797,7 @@ KeGetCurrentIrql(VOID)
return (KIRQL)0;
}
#undef KeLowerIrql
VOID
STDCALL
KeLowerIrql(
@ -821,7 +821,7 @@ KeQueryPerformanceCounter(
return Value;
}
#undef KeRaiseIrql
VOID
STDCALL
KeRaiseIrql(
@ -851,7 +851,7 @@ KeRaiseIrqlToSynchLevel(VOID)
return (KIRQL)0;
}
#undef KeReleaseSpinLock
VOID
STDCALL
KeReleaseSpinLock(

View file

@ -2,6 +2,8 @@
<importlibrary basename="hal" definition="hal.def" />
<include base="ntoskrnl">include</include>
<library>ntoskrnl</library>
<define name="_NTOSKRNL_" />
<define name="__USE_W32API" />
<file>hal.c</file>
<file>hal.rc</file>
</module>