Remove compiler warnings for the # not being at the start of the

line.
oldstable
Peter Berg Larsen 2004-12-20 16:53:12 +00:00 committed by Alexandre Julliard
parent a3c259603b
commit 08dbbeb015
2 changed files with 9 additions and 9 deletions

View File

@ -26,13 +26,13 @@
#define __WINE_RPC_H
#if defined(__powerpc__) || defined(_MAC) /* ? */
#define __RPC_MAC__
# define __RPC_MAC__
/* Also define __RPC_WIN32__ to ensure compatibility */
#define __RPC_WIN32__
# define __RPC_WIN32__
#elif defined(_WIN64)
#define __RPC_WIN64__
# define __RPC_WIN64__
#else
#define __RPC_WIN32__
# define __RPC_WIN32__
#endif
#include <basetsd.h>

View File

@ -49,10 +49,10 @@ extern "C" {
/* Mac's are special */
#if defined(__RPC_MAC__)
#define __NDR_LOCAL_DATA_REPRESENTATION \
# define __NDR_LOCAL_DATA_REPRESENTATION \
(__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_BIG_ENDIAN)
#else
#define __NDR_LOCAL_DATA_REPRESENTATION \
# define __NDR_LOCAL_DATA_REPRESENTATION \
(__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_LITTLE_ENDIAN)
#endif
@ -61,11 +61,11 @@ extern "C" {
/* for convenience, define NDR_LOCAL_IS_BIG_ENDIAN iff it is */
#if __NDR_LOCAL_ENDIAN == __NDR_BIG_ENDIAN
#define NDR_LOCAL_IS_BIG_ENDIAN
# define NDR_LOCAL_IS_BIG_ENDIAN
#elif __NDR_LOCAL_ENDIAN == __NDR_LITTLE_ENDIAN
#undef NDR_LOCAL_IS_BIG_ENDIAN
# undef NDR_LOCAL_IS_BIG_ENDIAN
#else
#error alien NDR_LOCAL_ENDIAN - Greg botched the defines again, please report
# error alien NDR_LOCAL_ENDIAN - Greg botched the defines again, please report
#endif
/* finally, do the casts like Microsoft */