What are the declaration of these for?
private Const MOUSEEVENTF_LEFTDOWN = &H2
private Const MOUSEEVENTF_LEFTUP = &H4

does it mean that in user32.dll, the events definition is &H2.. H4... ? I mean, is it like somewhere they have #define MOUSEEVENTF_LEFTDOWN &H2 or something like that?

and where I can find how these events are defined in the library?
so in another way, I can just type mouse_event &H2, 0, 0,0,0 ?

thanks