view src/hermes/common.inc @ 3951:e1e525d96838 SDL-1.2

Patch to allow DirectFB target to report a correct screen size. Fixes Bugzilla #399.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 04 Jun 2007 11:15:58 +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