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:
Timo Kreuzer
2009-06-20 20:53:47 +00:00
parent 98debfcbd4
commit 169da3458b
+7 -1
View File
@@ -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