Screen mouse button types

Types of mouse buttons.

Synopsis:

#include <screen/screen.h>
 
 enum {
      SCREEN_LEFT_MOUSE_BUTTON = (1 << 0)   
      SCREEN_MIDDLE_MOUSE_BUTTON = (1 << 1)   
      SCREEN_RIGHT_MOUSE_BUTTON = (1 << 2)   
};

Data:

SCREEN_LEFT_MOUSE_BUTTON
SCREEN_MIDDLE_MOUSE_BUTTON
SCREEN_RIGHT_MOUSE_BUTTON

Library:

libscreen

Description: