1 /*++ 2 3 Copyright (c) Microsoft Corporation 4 5 ModuleName: 6 7 MxMacros.h 8 9 Abstract: 10 11 This file contains macros used by Mx files 12 13 Author: 14 15 16 17 Revision History: 18 19 20 21 --*/ 22 23 #pragma once 24 25 #if (FX_CORE_MODE==FX_CORE_USER_MODE) 26 #define CHECK_RETURN_IF_USER_MODE _Must_inspect_result_ 27 #else 28 #define CHECK_RETURN_IF_USER_MODE 29 #endif 30 31 #ifdef __REACTOS__ 32 # ifndef STDCALL 33 # define STDCALL __stdcall 34 # endif 35 #endif 36