1 /*++
2 
3 Copyright (c) Microsoft Corporation
4 
5 Module Name:
6 
7     FxPkgIoShared.hpp
8 
9 Abstract:
10 
11     This file contains portion of FxPkgIo.hpp that is need in shared code.
12 
13 Author:
14 
15 Environment:
16 
17 Revision History:
18 
19 
20 
21 --*/
22 
23 #ifndef _FXPKGIOSHARED_HPP_
24 #define _FXPKGIOSHARED_HPP_
25 
26 enum FxIoStopProcessingForPowerAction {
27     FxIoStopProcessingForPowerHold = 1,
28     FxIoStopProcessingForPowerPurgeManaged,
29     FxIoStopProcessingForPowerPurgeNonManaged,
30 };
31 
32 // begin_wpp config
33 // CUSTOM_TYPE(FxIoStopProcessingForPowerAction, ItemEnum(FxIoStopProcessingForPowerAction));
34 // end_wpp
35 
36 #endif // _FXPKGIOSHARED_HPP
37