view src/hermes/common.inc @ 4091:98b219f9ff17 SDL-1.2

Removed some C++ style comments from the public headers. Fixes Bugzilla #474.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 05 Aug 2007 03:21:18 +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