view src/hermes/common.inc @ 2103:4a010418f3b9

Merged r3009:3011 from branches/SDL-1.2: Skip subsystem on --disable-joysticks.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 04 Apr 2007 10:39:16 +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