view src/hermes/common.inc @ 2165:c2ffcc627701

Merged r3201:3204 from branches/SDL-1.2: win32 rwops tweaks.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 10 Jul 2007 19:06:02 +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