mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
29 lines
324 B
C
29 lines
324 B
C
/*++
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
ModuleName:
|
|
|
|
MxMacros.h
|
|
|
|
Abstract:
|
|
|
|
This file contains macros used by Mx files
|
|
|
|
Author:
|
|
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
#if (FX_CORE_MODE==FX_CORE_USER_MODE)
|
|
#define CHECK_RETURN_IF_USER_MODE _Must_inspect_result_
|
|
#else
|
|
#define CHECK_RETURN_IF_USER_MODE
|
|
#endif
|