view src/hermes/common.inc @ 4422:e5bdd0a79e5e SDL-1.2

Replaced README.SVN with Mercurial information, for 1.2 branch.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 28 Feb 2010 23:45:02 -0800
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