view src/hermes/common.inc @ 4034:4ea82f5e7e2c SDL-1.2

Backported the NAS detection from SDL 1.3, replacing the broken NetBSD patch
author Sam Lantinga <slouken@libsdl.org>
date Tue, 10 Jul 2007 14:16:44 +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