21625f40b5
I tried to get the latest versions from dockapps.org, but I haven't tested any of them. More dockapps will be added as time permits.
20 lines
415 B
C
20 lines
415 B
C
#ifndef MOUSE_REGIONS_H_INCLUDED
|
|
#define MOUSE_REGIONS_H_INCLUDED
|
|
|
|
/***********/
|
|
/* Defines */
|
|
/***********/
|
|
|
|
#define MAX_MOUSE_REGION (16)
|
|
|
|
/***********************/
|
|
/* Function Prototypes */
|
|
/***********************/
|
|
|
|
void AddMouseRegion(int index, int left, int top, int right, int bottom);
|
|
int CheckMouseRegion(int x, int y);
|
|
void EnableMouseRegion(int index);
|
|
void DisableMouseRegion(int index);
|
|
|
|
#endif
|