view src/hermes/common.inc @ 2051:c03f1446e897

Whoops, need a pointer to an LPDIRECTSOUNDBUFFER and not the LPDIRECTSOUNDBUFFER itself.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 20 Oct 2006 00:15:18 +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