1 #ifndef MOUSE_REGIONS_H_INCLUDED
2 #define MOUSE_REGIONS_H_INCLUDED
3 
4   /***********/
5  /* Defines */
6 /***********/
7 
8 #define MAX_MOUSE_REGION (12)
9 
10   /***********************/
11  /* Function Prototypes */
12 /***********************/
13 
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);
18 
19 #endif
20