ReactOS 0.4.15-dev-7958-gcd0bb1a
fxdevicetomxinterface.hpp
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation
4
5Module Name:
6
7 FxDeviceToMxInterface.hpp
8
9Abstract:
10
11 Classes in this file are there to enable reaching into those classes that
12 have not yet been made mode agnostic such as FxDevice, FxDeviceInit, FxPkgIo
13 and others. These will not be needed once all objects have been made mode
14 agnostic
15
16 These classes will be implemented separately by respective frameworks
17
18 Convention used:
19 - Typically the first parameter to a method exposed by these classes is a
20 pointer to the object that is being exposed. e.g. methods in FxDeviceToMx
21 class have FxDevice* as the first parameter.
22
23 - The name of method is same as the original method wherever applicable.
24
25 - For a method of another object that is a member of the object being
26 exposed, the name comprises member object's class name.
27 e.g. m_Device->m_PkgIo->StopProcessingForPower() is exposed as
28 FxDeviceToMx::FxPkgIo_StopProcessingForPower( )
29 The name of method begins with FxPkgIo_ because StopProcessingForPower is
30 a method of FxPkgIo and not FxDevice.
31
32Author:
33
34
35
36Environment:
37
38
39Revision History:
40
41--*/
42
43#pragma once
44
45
46
47
48
50__inline
52 __in WDF_FILEOBJECT_CLASS FileObjectClass
53 );
54
56__inline
58 __in WDF_FILEOBJECT_CLASS FileObjectClass
59 );
unsigned char BOOLEAN
#define __in
Definition: dbghelp.h:35
BOOLEAN __inline FxIsFileObjectOptional(__in WDF_FILEOBJECT_CLASS FileObjectClass)
Definition: fxdevice.hpp:112
WDF_FILEOBJECT_CLASS __inline FxFileObjectClassNormalize(__in WDF_FILEOBJECT_CLASS FileObjectClass)
Definition: fxdevice.hpp:103
enum _WDF_FILEOBJECT_CLASS WDF_FILEOBJECT_CLASS