get mouse to move down

I'm trying to make a simple macro/program that moves your mouse down slightly whenever you press MOUSE1.
Sorry for clunky code, I'm very new to C++ and have no idea.
1
2
3
4
5
6
7
8
9
10
11
12
#include <windows.h>
#include <iostream>
#define VK_LBUTTON 0x01
using namespace std;


	SHORT WINAPI GetAsyncKeyState(
		_In_  int(VK_LBUTTON)
		);


Topic archived. No new replies allowed.