mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 06:52:07 +00:00
Fix definition of PORT_MAXIMUM_MESSAGE_LENGTH for 64 bit
svn path=/trunk/; revision=43460
This commit is contained in:
parent
a299db4e69
commit
c236dd31f9
1 changed files with 5 additions and 1 deletions
|
@ -83,7 +83,11 @@ typedef enum _PORT_INFORMATION_CLASS
|
|||
//
|
||||
// Maximum message size that can be sent through an LPC Port without a section
|
||||
//
|
||||
#define PORT_MAXIMUM_MESSAGE_LENGTH 256
|
||||
#ifdef _WIN64
|
||||
#define PORT_MAXIMUM_MESSAGE_LENGTH 512
|
||||
#else
|
||||
#define PORT_MAXIMUM_MESSAGE_LENGTH 256
|
||||
#endif
|
||||
|
||||
//
|
||||
// Portable LPC Types for 32/64-bit compatibility
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue