wmail: debug macro fixes.
[dockapps.git] / wmthrottle / src / mouse_regions.h
blob17fc23eae29140d843c0405a0e2ccbc6023f84c9
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(int 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