view src/hermes/common.inc @ 4192:2f5e884f0a9d SDL-1.2

Made NAS target dynamic, so you can safely include it in shipping binaries.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 13 Sep 2009 22:19:56 +0000 (2009-09-13)
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