reactos/sdk/lib/drivers/wdf/shared/inc/primitives/common/mx.h
Victor Perevertkin 8a978a179f
[WDF] Add Windows Driver Framework files
Takern from Microsoft GitHub repo:
d9c6040fe9

Licensed under MIT
2020-11-03 00:06:26 +03:00

42 lines
621 B
C

/*++
Copyright (c) Microsoft Corporation
ModuleName:
Mx.h
Abstract:
This file includes MxUm.h/MxKm.h based on the mode
Shared code can use this header to have appropriate
mode headers pulled in
Author:
Revision History:
--*/
#pragma once
#include "MxMacros.h"
//
// Greater than 64 logical processors support: direct DDK to include the new
// routines to handle groups and exclude any potentially dangerous, old
// interfaces.
//
#define NT_PROCESSOR_GROUPS 1
#if (FX_CORE_MODE == FX_CORE_USER_MODE)
#include "MxUm.h"
#elif (FX_CORE_MODE == FX_CORE_KERNEL_MODE)
#include "MxKm.h"
#endif