~ubuntu-branches/ubuntu/karmic/libsdl1.2/karmic

« back to all changes in this revision

Viewing changes to include/SDL_mouse.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2008-01-05 14:10:45 UTC
  • mto: (2.1.3 lenny)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20080105141045-mjdg2rp09mamme4a
Tags: upstream-1.2.13
ImportĀ upstreamĀ versionĀ 1.2.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
#define SDL_BUTTON_RIGHT        3
123
123
#define SDL_BUTTON_WHEELUP      4
124
124
#define SDL_BUTTON_WHEELDOWN    5
 
125
#define SDL_BUTTON_X1           6
 
126
#define SDL_BUTTON_X2           7
125
127
#define SDL_BUTTON_LMASK        SDL_BUTTON(SDL_BUTTON_LEFT)
126
128
#define SDL_BUTTON_MMASK        SDL_BUTTON(SDL_BUTTON_MIDDLE)
127
129
#define SDL_BUTTON_RMASK        SDL_BUTTON(SDL_BUTTON_RIGHT)
 
130
#define SDL_BUTTON_X1MASK       SDL_BUTTON(SDL_BUTTON_X1)
 
131
#define SDL_BUTTON_X2MASK       SDL_BUTTON(SDL_BUTTON_X2)
128
132
 
129
133
 
130
134
/* Ends C function definitions when using C++ */