view src/hermes/common.inc @ 3983:540466e900db SDL-1.2

Removed textrels from hermes code. Partially fixes Bugzilla #418.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 27 Jun 2007 10:12:49 +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