g15macro simulate mouse click

Hi,
I wanted to ask if it would be possible to let g15macro handle mouseclicks too. It does not has to be programmable, it would be enough to write something in g15macro.conf like:
MOUSE Down 400:300
Mouse UP

where 400:300 are the mouse coordinates.

Do you have any ideas?

Well I did find something in

Well I did find something in the code but it looks like somebody did want to implement it but didn't do it in the end, or am I mistaken?

g15macro.h:

typedef struct keypress_s {
unsigned long keycode;
unsigned long time_ms;
unsigned char pressed;
unsigned long modifiers;
unsigned int mouse_x;
unsigned int mouse_y;
unsigned int buttons;
}keypress_t;