view src/hermes/common.inc @ 1995:0ca6ba107642

ALSA backend can handle int32 and float32 data directly.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 31 Aug 2006 21:28:21 +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