view src/hermes/common.inc @ 4039:7fd9a811efc7 SDL-1.2

Reverted most of r3200:3201: a malloc() failure would leave a zero-byte file if opening for write.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 10 Jul 2007 18:56:08 +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