view src/hermes/common.inc @ 2131:55c7932d1fdb

Added a WindowID to the user event and cleaned up a little bit of formating
author Bob Pendleton <bob@pendleton.com>
date Wed, 20 Jun 2007 00:01:04 +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