wmclockmon: update change-log
[dockapps.git] / wmthrottle / src / mouse_regions.h
blob1dee6bb95ffd0aa2ed8e0e22dde72016969b6dac
1 #ifndef MOUSE_REGIONS_H_INCLUDED
2 #define MOUSE_REGIONS_H_INCLUDED
4 /***********/
5 /* Defines */
6 /***********/
8 #define MAX_MOUSE_REGION (9)
10 /***********************/
11 /* Function Prototypes */
12 /***********************/
14 void AddMouseRegion(unsigned index, int left, int top, int right, int bottom);
15 int CheckMouseRegion(int x, int y);
16 void EnableMouseRegion(int index);
17 void DisableMouseRegion(int index);
19 #endif