mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 02:43:09 +00:00
[WDF] Add Windows Driver Framework files
Takern from Microsoft GitHub repo:
d9c6040fe9
Licensed under MIT
This commit is contained in:
parent
545df81502
commit
8a978a179f
475 changed files with 285099 additions and 0 deletions
44
sdk/lib/drivers/wdf/shared/inc/private/um/fxinterruptum.hpp
Normal file
44
sdk/lib/drivers/wdf/shared/inc/private/um/fxinterruptum.hpp
Normal file
|
@ -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_
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue