Author: tkreuzer Date: Wed Oct 14 19:05:51 2009 New Revision: 43460
URL: http://svn.reactos.org/svn/reactos?rev=43460&view=rev Log: Fix definition of PORT_MAXIMUM_MESSAGE_LENGTH for 64 bit
Modified: trunk/reactos/include/ndk/lpctypes.h
Modified: trunk/reactos/include/ndk/lpctypes.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/lpctypes.h?rev=... ============================================================================== --- trunk/reactos/include/ndk/lpctypes.h [iso-8859-1] (original) +++ trunk/reactos/include/ndk/lpctypes.h [iso-8859-1] Wed Oct 14 19:05:51 2009 @@ -83,7 +83,11 @@ // // 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