view src/hermes/common.inc @ 1876:406b8325ee34

Fixed bug #147 Only enable Unicode key events if Unicode translation is enabled.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 23 Jun 2006 04:27:55 +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