view src/hermes/common.inc @ 3915:89b0f3d12fe2 SDL-1.2

Removed the contents of the BUGS file, as most (all?) of the issues were either long-since fixed or something that will never get fixed. The file now points people to Bugzilla and the mailing list. Fixes Bugzilla #352.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 14 Feb 2007 10:40:24 +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