view src/hermes/common.inc @ 4061:95ecf165f113 SDL-1.2

Mac OS X thinks we want a function call to SDL_memcpy() and not memcpy() here, thanks to macro replacement issues.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 14 Jul 2007 06:45:01 +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