include: Drop unneeded l modifiers from numeric constants in rpcndr.h.

This commit is contained in:
Michael Stefaniuc 2011-11-23 12:12:55 +01:00 committed by Alexandre Julliard
parent 7e82317f17
commit 517d9333d4

View file

@ -40,19 +40,19 @@ extern "C" {
/* stupid #if can't handle casts... this __stupidity /* stupid #if can't handle casts... this __stupidity
is just a workaround for that limitation */ is just a workaround for that limitation */
#define __NDR_CHAR_REP_MASK 0x000fL #define __NDR_CHAR_REP_MASK 0x000f
#define __NDR_INT_REP_MASK 0x00f0L #define __NDR_INT_REP_MASK 0x00f0
#define __NDR_FLOAT_REP_MASK 0xff00L #define __NDR_FLOAT_REP_MASK 0xff00
#define __NDR_IEEE_FLOAT 0x0000L #define __NDR_IEEE_FLOAT 0x0000
#define __NDR_VAX_FLOAT 0x0100L #define __NDR_VAX_FLOAT 0x0100
#define __NDR_IBM_FLOAT 0x0300L #define __NDR_IBM_FLOAT 0x0300
#define __NDR_ASCII_CHAR 0x0000L #define __NDR_ASCII_CHAR 0x0000
#define __NDR_EBCDIC_CHAR 0x0001L #define __NDR_EBCDIC_CHAR 0x0001
#define __NDR_LITTLE_ENDIAN 0x0010L #define __NDR_LITTLE_ENDIAN 0x0010
#define __NDR_BIG_ENDIAN 0x0000L #define __NDR_BIG_ENDIAN 0x0000
/* Mac's are special */ /* Mac's are special */
#if defined(__RPC_MAC__) #if defined(__RPC_MAC__)