view src/hermes/common.inc @ 4062:ee5a38285651 SDL-1.2

Removed some unused static variables.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 14 Jul 2007 07:01:38 +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