view src/hermes/common.inc @ 2137:e47e63af07df

Patched to compile (missing #endif from a mismerge). Thanks to Peter Mackay for pointing it out.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 29 Jun 2007 11:08:53 +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