view src/hermes/common.inc @ 2013:0615fa58c0be

Fixed S32 audio mixing, but I'm a bit nervous about the use of 64-bit datatypes here...
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 01 Sep 2006 19:17:05 +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