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

line.
This commit is contained in:
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 #define __WINE_RPC_H
#if defined(__powerpc__) || defined(_MAC) /* ? */ #if defined(__powerpc__) || defined(_MAC) /* ? */
#define __RPC_MAC__ # define __RPC_MAC__
/* Also define __RPC_WIN32__ to ensure compatibility */ /* Also define __RPC_WIN32__ to ensure compatibility */
#define __RPC_WIN32__ # define __RPC_WIN32__
#elif defined(_WIN64) #elif defined(_WIN64)
#define __RPC_WIN64__ # define __RPC_WIN64__
#else #else
#define __RPC_WIN32__ # define __RPC_WIN32__
#endif #endif
#include <basetsd.h> #include <basetsd.h>

View file

@ -49,10 +49,10 @@ extern "C" {
/* Mac's are special */ /* Mac's are special */
#if defined(__RPC_MAC__) #if defined(__RPC_MAC__)
#define __NDR_LOCAL_DATA_REPRESENTATION \ # define __NDR_LOCAL_DATA_REPRESENTATION \
(__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_BIG_ENDIAN) (__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_BIG_ENDIAN)
#else #else
#define __NDR_LOCAL_DATA_REPRESENTATION \ # define __NDR_LOCAL_DATA_REPRESENTATION \
(__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_LITTLE_ENDIAN) (__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_LITTLE_ENDIAN)
#endif #endif
@ -61,11 +61,11 @@ extern "C" {
/* for convenience, define NDR_LOCAL_IS_BIG_ENDIAN iff it is */ /* for convenience, define NDR_LOCAL_IS_BIG_ENDIAN iff it is */
#if __NDR_LOCAL_ENDIAN == __NDR_BIG_ENDIAN #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 #elif __NDR_LOCAL_ENDIAN == __NDR_LITTLE_ENDIAN
#undef NDR_LOCAL_IS_BIG_ENDIAN # undef NDR_LOCAL_IS_BIG_ENDIAN
#else #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 #endif
/* finally, do the casts like Microsoft */ /* finally, do the casts like Microsoft */