Mercurial > sdl-ios-xcode
diff include/SDL_endian.h @ 337:9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 11 Apr 2002 14:35:16 +0000 |
parents | f6ffac90895c |
children | b8d311d90021 |
line wrap: on
line diff
--- a/include/SDL_endian.h Wed Apr 10 17:12:32 2002 +0000 +++ b/include/SDL_endian.h Thu Apr 11 14:35:16 2002 +0000 @@ -124,20 +124,20 @@ #endif /* Read an item of the specified endianness and return in native format */ -extern DECLSPEC Uint16 SDL_ReadLE16(SDL_RWops *src); -extern DECLSPEC Uint16 SDL_ReadBE16(SDL_RWops *src); -extern DECLSPEC Uint32 SDL_ReadLE32(SDL_RWops *src); -extern DECLSPEC Uint32 SDL_ReadBE32(SDL_RWops *src); -extern DECLSPEC Uint64 SDL_ReadLE64(SDL_RWops *src); -extern DECLSPEC Uint64 SDL_ReadBE64(SDL_RWops *src); +extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops *src); +extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops *src); +extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src); +extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src); +extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops *src); +extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops *src); /* Write an item of native format to the specified endianness */ -extern DECLSPEC int SDL_WriteLE16(SDL_RWops *dst, Uint16 value); -extern DECLSPEC int SDL_WriteBE16(SDL_RWops *dst, Uint16 value); -extern DECLSPEC int SDL_WriteLE32(SDL_RWops *dst, Uint32 value); -extern DECLSPEC int SDL_WriteBE32(SDL_RWops *dst, Uint32 value); -extern DECLSPEC int SDL_WriteLE64(SDL_RWops *dst, Uint64 value); -extern DECLSPEC int SDL_WriteBE64(SDL_RWops *dst, Uint64 value); +extern DECLSPEC int SDLCALL SDL_WriteLE16(SDL_RWops *dst, Uint16 value); +extern DECLSPEC int SDLCALL SDL_WriteBE16(SDL_RWops *dst, Uint16 value); +extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value); +extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value); +extern DECLSPEC int SDLCALL SDL_WriteLE64(SDL_RWops *dst, Uint64 value); +extern DECLSPEC int SDLCALL SDL_WriteBE64(SDL_RWops *dst, Uint64 value); /* Ends C function definitions when using C++ */