view src/hermes/common.inc @ 2217:18bca558f3a1

Some thoughts on 1.3 video written down
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Aug 2007 06:04:27 +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