view src/hermes/common.inc @ 2074:9e6dc39f48b6

Merged r2913:2914 from SDL-1.2 branch into trunk: alpha blit GCC MMX asm fix.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 21 Nov 2006 23:24: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