view src/hermes/common.inc @ 4124:df2f562890a0 SDL-1.2

Fixed bug #510 Oops, we were disabling the screensaver before checking SDL_VIDEO_ALLOW_SCREENSAVER
author Sam Lantinga <slouken@libsdl.org>
date Sat, 29 Dec 2007 21:41:48 +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