From c236dd31f988cc893bf57464566be44b341a2e40 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Wed, 14 Oct 2009 17:05:51 +0000 Subject: [PATCH] Fix definition of PORT_MAXIMUM_MESSAGE_LENGTH for 64 bit svn path=/trunk/; revision=43460 --- reactos/include/ndk/lpctypes.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/include/ndk/lpctypes.h b/reactos/include/ndk/lpctypes.h index 444130ccc0a..44419618d5d 100644 --- a/reactos/include/ndk/lpctypes.h +++ b/reactos/include/ndk/lpctypes.h @@ -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