1 #ifndef MOUSE_REGIONS_H_INCLUDED
2 #define MOUSE_REGIONS_H_INCLUDED
8 #define MAX_MOUSE_REGION (16)
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
);