view src/hermes/common.inc @ 2121:85ed90a755fa

Reworked r3067:3068 from branches/SDL-1.2: arts unavailable hardware bug fix.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 14 Jun 2007 14:22:54 +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