ReactOS 0.4.15-dev-7998-gdb93cb1
mxmacros.h
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation
4
5ModuleName:
6
7 MxMacros.h
8
9Abstract:
10
11 This file contains macros used by Mx files
12
13Author:
14
15
16
17Revision 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