view src/hermes/common.inc @ 2095:1d9cd8266e22

Added id of another buggy Microsoft SideWinder to the Linux joystick driver. Fixes Bugzilla #395.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 20 Feb 2007 22:54:25 +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