the only thing i did was added "
UINT SendInput(
UINT nInputs,
LPINPUT pInputs,
int cbSize
);
"
into my script (with nothing much in it) just to see if it worked
the only thing i did was added "
UINT SendInput(
UINT nInputs,
LPINPUT pInputs,
int cbSize
);
"
into my script (with nothing much in it) just to see if it worked
nInputs, pInputs, and cbSize are parameters. You need to pass them to the function. Did you declare them?
Comment