view src/hermes/common.inc @ 1996:f25d771fe6f2

Added int32 support to Amiga audio driver and cleaned up some other details in driver initialization. May need tweaking: I can't compile the amiga driver here.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 31 Aug 2006 21:43:25 +0000 (2006-08-31)
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