view src/hermes/common.inc @ 4094:ca992789c798 SDL-1.2

ANSI C fix (all variables need to be defined at start of block). Fixes Bugzilla #487.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 01 Sep 2007 17:25:24 +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