view src/hermes/common.inc @ 3922:4e02435ad2be SDL-1.2

Removed some debug printf() calls I accidentally added to Subversion.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 23 Feb 2007 00:37:07 +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