view src/hermes/common.inc @ 3804:b12b7ec0dfcc SDL-ryan-multiple-audio-device

Removed an if (), which lets this code section be a little less cluttered...
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 04 Oct 2006 22:16:46 +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