Remove unused functions {LO,PV}TouchesLine() and their callbacks
[geda-pcb/pcjc2.git] / src / hid / common / hid_resource.h
blobbb3ccb671071c992c72e1927f9721679cc51d02d
2 #ifndef PCB_HID_COMMON_HID_RESOURCE_H
3 #define PCH_HID_COMMON_HID_RESOURCE_H
5 #include "resource.h"
7 #define M_Shift 1
8 #define M_Ctrl 2
9 #define M_Mod(n) (1<<(n+1))
10 #define M_Alt M_Mod(1)
11 #define M_Multi M_Mod(2)
12 #define M_Release (~((unsigned)-1>>1)) // set the top bit
14 void load_mouse_resource (const Resource *res);
15 void do_mouse_action (int button, int mods);
17 #endif