view src/hermes/common.inc @ 2155:31269eb74914

Merged r3165:3166 from branches/SDL-1.2: gcc -Wall fix in arts audio target.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 08 Jul 2007 01:37:48 +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