view src/hermes/common.inc @ 2146:9fcde304c7b6

Replaced a few memset/memcpy calls with SDL_memset/SDL_memcpy.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 05 Jul 2007 02:47:54 +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