view src/hermes/common.inc @ 2109:51cbe188a49e

Merged r3029:3030 from branches/SDL-1.2: Mac OS X joystick axis fix.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 29 May 2007 12:14: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