view src/hermes/common.inc @ 2161:e635db5b45ef

Oh yeah, they're boolean values...
author Sam Lantinga <slouken@libsdl.org>
date Tue, 10 Jul 2007 05:29:56 +0000 (2007-07-10)
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