view src/hermes/common.inc @ 3808:e630f5fe29d8 SDL-ryan-multiple-audio-device

Another s/video/audio typo.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 05 Oct 2006 01:06:06 +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