view src/hermes/common.inc @ 4055:6ed1fded55ff SDL-1.2

Ryan's fix is still good for the built-in version of iconv_open()
author Sam Lantinga <slouken@libsdl.org>
date Thu, 12 Jul 2007 08:04:10 +0000
parents d76c3909b244
children
line wrap: on
line source

; Some common macros for hermes nasm code

%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro