view src/hermes/common.inc @ 4267:27f972dd5aff SDL-1.2

Removed isCustom ... not used any more.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 29 Sep 2009 13:42:33 +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