mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Fix _WIN64 definition of PORT_MAXIMUM_MESSAGE_LENGTH in the NDK and only define it for NTOS_MODE_USER as it's also defined by wdm.h
svn path=/branches/ros-amd64-bringup/; revision=41495
This commit is contained in:
@@ -34,7 +34,13 @@ Author:
|
||||
//
|
||||
// Maximum message size that can be sent through an LPC Port without a section
|
||||
//
|
||||
#define PORT_MAXIMUM_MESSAGE_LENGTH 256
|
||||
#ifdef NTOS_MODE_USER
|
||||
#ifdef _WIN64
|
||||
#define PORT_MAXIMUM_MESSAGE_LENGTH 512
|
||||
#else
|
||||
#define PORT_MAXIMUM_MESSAGE_LENGTH 256
|
||||
#endif
|
||||
#endif
|
||||
|
||||
//
|
||||
// Port Object Access Masks
|
||||
|
||||
Reference in New Issue
Block a user