view src/hermes/common.inc @ 4187:b8d7c7a46ff7 SDL-1.2

Fixed compiler warning on 64-bit systems (but this is still broken, really).
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 12 Sep 2009 13:16:33 +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