view src/hermes/common.inc @ 3786:b70f4e9291bb SDL-ryan-multiple-audio-device

High level now lets user select a specific audio device with an environment variable, when the app requested the default device.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 03 Oct 2006 16:02:08 +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