view src/hermes/common.inc @ 3891:2b5c30359c1d SDL-1.2

Chopped out some code to match changes in revision #2793 to fix build...but I think this just breaks fullscreen YUV rendering.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 07 Nov 2006 14:06:25 +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