mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
42 lines
621 B
C
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
|
|
|