1 /*++
2 
3 Copyright (c) Microsoft Corporation
4 
5 Module Name:
6 
7     FxInterruptUm.hpp
8 
9 Abstract:
10 
11     This module implements a frameworks managed interrupt object
12 
13 Author:
14 
15 
16 
17 Environment:
18 
19     User mode only
20 
21 Revision History:
22 
23 
24 
25 --*/
26 #ifndef _FXINTERRUPTUM_H_
27 #define _FXINTERRUPTUM_H_
28 
29 #include "FxInterrupt.hpp"
30 
31 __inline
32 struct _KINTERRUPT*
33 FxInterrupt::GetInterruptPtr(
34     VOID
35     )
36 {
37     //
38     // m_Interrupt is always NULL in UMDF.
39     //
40     return NULL;
41 }
42 
43 #endif // _FXINTERRUPTUM_H_
44 
45