[WDF] Add Windows Driver Framework files
[reactos.git] / sdk / lib / drivers / wdf / shared / inc / private / um / fxinterruptum.hpp
diff --git a/sdk/lib/drivers/wdf/shared/inc/private/um/fxinterruptum.hpp b/sdk/lib/drivers/wdf/shared/inc/private/um/fxinterruptum.hpp
new file mode 100644 (file)
index 0000000..c637ab2
--- /dev/null
@@ -0,0 +1,44 @@
+/*++
+
+Copyright (c) Microsoft Corporation
+
+Module Name:
+
+    FxInterruptUm.hpp
+
+Abstract:
+
+    This module implements a frameworks managed interrupt object
+
+Author:
+
+
+
+Environment:
+
+    User mode only
+
+Revision History:
+
+
+
+--*/
+#ifndef _FXINTERRUPTUM_H_
+#define _FXINTERRUPTUM_H_
+
+#include "FxInterrupt.hpp"
+
+__inline
+struct _KINTERRUPT*
+FxInterrupt::GetInterruptPtr(
+    VOID
+    )
+{
+    //
+    // m_Interrupt is always NULL in UMDF.
+    //
+    return NULL;
+}
+
+#endif // _FXINTERRUPTUM_H_
+