diff -r 4feced261c68 -r de822cd3df3a misc/winutils/include/begin_code.h --- a/misc/winutils/include/begin_code.h Tue Jan 21 22:38:13 2014 +0100 +++ b/misc/winutils/include/begin_code.h Tue Jan 21 22:43:06 2014 +0100 @@ -20,14 +20,14 @@ slouken@libsdl.org */ -/** +/** * @file begin_code.h * This file sets things up for C dynamic library function definitions, * static inlined functions, and structures aligned at 4-byte alignment. * If you don't like ugly C preprocessor code, don't look at this file. :) */ -/** +/** * @file begin_code.h * This shouldn't be nested -- included it around code only. */ @@ -36,7 +36,7 @@ #endif #define _begin_code_h -/** +/** * @def DECLSPEC * Some compilers use a special export keyword */ @@ -45,22 +45,22 @@ # if defined(__GNUC__) # define DECLSPEC # else -# define DECLSPEC __declspec(export) +# define DECLSPEC __declspec(export) # endif # elif defined(__WIN32__) # ifdef __BORLANDC__ # ifdef BUILD_SDL -# define DECLSPEC +# define DECLSPEC # else -# define DECLSPEC __declspec(dllimport) +# define DECLSPEC __declspec(dllimport) # endif # else -# define DECLSPEC __declspec(dllexport) +# define DECLSPEC __declspec(dllexport) # endif # elif defined(__OS2__) # ifdef __WATCOMC__ # ifdef BUILD_SDL -# define DECLSPEC __declspec(dllexport) +# define DECLSPEC __declspec(dllexport) # else # define DECLSPEC # endif @@ -78,14 +78,14 @@ # endif # else # if defined(__GNUC__) && __GNUC__ >= 4 -# define DECLSPEC __attribute__ ((visibility("default"))) +# define DECLSPEC __attribute__ ((visibility("default"))) # else # define DECLSPEC # endif # endif #endif -/** +/** * @def SDLCALL * By default SDL uses the C calling convention */ @@ -108,8 +108,8 @@ # endif #endif /* SDLCALL */ -#ifdef __SYMBIAN32__ -#ifndef EKA2 +#ifdef __SYMBIAN32__ +#ifndef EKA2 #undef DECLSPEC #define DECLSPEC #elif !defined(__WINS__) @@ -123,7 +123,7 @@ * Force structure packing at 4 byte alignment. * This is necessary if the header is included in code which has structure * packing set to an alternate value, say for loading structures from disk. - * The packing is reset to the previous value in close_code.h + * The packing is reset to the previous value in close_code.h */ #if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) #ifdef _MSC_VER @@ -157,7 +157,7 @@ defined(__WATCOMC__) || defined(__LCC__) || \ defined(__DECC) || defined(__EABI__) #ifndef __inline__ -#define __inline__ __inline +#define __inline__ __inline #endif #define SDL_INLINE_OKAY #else