view src/hermes/common.inc @ 4248:a9c6e65c1416 SDL-1.2

Added missing DirectX data
author Sam Lantinga <slouken@libsdl.org>
date Sun, 27 Sep 2009 04:49:30 +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