1 /*++ 2 3 Copyright (c) Microsoft. All rights reserved. 4 5 Module Name: 6 7 fxsupportpchum.h 8 9 Abstract: 10 11 This module contains header definitions and include files needed by all 12 modules in fx\support 13 14 Author: 15 16 Environment: 17 User mode only 18 19 Revision History: 20 21 --*/ 22 23 #ifndef __FX_SUPPORT_PCH_UM_HPP__ 24 #define __FX_SUPPORT_PCH_UM_HPP__ 25 26 extern "C" { 27 #include "mx.h" 28 } 29 30 #include "fxmin.hpp" 31 32 #include "FxPagedObject.hpp" 33 #include "FxRegKey.hpp" 34 #include "FxCollection.hpp" 35 #include "FxString.hpp" 36 #include "StringUtil.hpp" 37 38 #include "FxDeviceText.hpp" 39 40 #include <WdfResource.h> 41 #include <FxResource.hpp> 42 43 44 #endif // __FX_SUPPORT_PCH_UM_HPP__ 45