aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/window/mouse_button.h
blob: fccf0a7fdf99cdd2f90feaaa73d79f8b09491cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _MGL_MOUSE_BUTTON_H_
#define _MGL_MOUSE_BUTTON_H_

typedef enum {
    MGL_BUTTON_UNKNOWN,
    MGL_BUTTON_LEFT,
    MGL_BUTTON_RIGHT,
    MGL_BUTTON_MIDDLE,
    MGL_BUTTON_XBUTTON1,
    MGL_BUTTON_XBUTTON2,

    /* This should always be the last mouse button */
    __MGL_NUM_MOUSE_BUTTONS__
} mgl_mouse_button;

#endif /* _MGL_MOUSE_BUTTON_H_ */