view src/hermes/common.inc @ 3947:0f8a812e2855 SDL-1.2

Patched to compile on Mac OS X (not that you should necessarily be using this on Mac OS X, but still) ...
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 03 Jun 2007 06:52:58 +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