view src/hermes/common.inc @ 4320:33d306630296 SDL-1.2

Corrected misuse of snd_pcm_writei() in ALSA driver. Hopefully fixes Bugzilla #650.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 12 Oct 2009 08:06:40 +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