view src/hermes/common.inc @ 1886:44635227a939

Updated the version to 1.2.11
author Sam Lantinga <slouken@libsdl.org>
date Sun, 25 Jun 2006 18:07:34 +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