view src/hermes/common.inc @ 4394:42012a6afb5b SDL-1.2

Merged SDL 1.3 revision 5424, fixing a crash in the joystick code on recent kernels.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 17 Dec 2009 14:33:00 +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