%% Copyright (c) 2001 Dan Gudmundsson %% %% See the file "license.terms" for information on usage and redistribution %% of this file, and for a DISCLAIMER OF ALL WARRANTIES. %% %% $Id: sdl_mouse.hrl,v 1.1 2004/03/30 07:50:46 bjorng Exp $ %% %%%---------------------------------------------------------------------- %%% File : sdl_mouse.hrl %%% Author : Dan Gudmundsson %%% Purpose : Usable mouse macros %%% Created : 12 Jul 2000 by Dan Gudmundsson %%%---------------------------------------------------------------------- -define(SDL_BUTTON_LEFT, 1). -define(SDL_BUTTON_MIDDLE, 2). -define(SDL_BUTTON_RIGHT, 3). -define(SDL_BUTTON_LMASK, 2#0001). -define(SDL_BUTTON_MMASK, 2#0010). -define(SDL_BUTTON_RMASK, 2#0100).