hal.dll: add stub for KeGetCurrentIrql

Austin English austinenglish at gmail.com
Wed Jul 8 18:57:06 CDT 2009


See bug 19245.

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/hal/hal.c b/dlls/hal/hal.c
index ed38e6c..36e9fe9 100644
--- a/dlls/hal/hal.c
+++ b/dlls/hal/hal.c
@@ -126,3 +126,9 @@ ULONG WINAPI HalGetBusData(BUS_DATA_TYPE BusDataType, ULONG BusNumber, ULONG Slo
     /* Claim that there is no such bus */
     return 0;
 }
+
+KIRQL WINAPI KeGetCurrentIrql(VOID)
+{
+    FIXME( " stub!\n");
+    return 0;
+}
\ No newline at end of file
diff --git a/dlls/hal/hal.spec b/dlls/hal/hal.spec
index 0824e49..f050ed9 100644
--- a/dlls/hal/hal.spec
+++ b/dlls/hal/hal.spec
@@ -70,7 +70,7 @@
 @ stub KdComPortInUse
 @ stub KeAcquireSpinLock
 @ stub KeFlushWriteBuffer
-@ stub KeGetCurrentIrql
+@ stdcall KeGetCurrentIrql()
 @ stub KeLowerIrql
 @ stub KeQueryPerformanceCounter
 @ stub KeRaiseIrql


More information about the wine-patches mailing list