view src/hermes/common.inc @ 4053:0aadbc81c497 SDL-1.2

Fixed bug #455 If passed "" for the character set, let iconv_open() interpret it as locale.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 12 Jul 2007 07:29:19 +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