I want to get the current mouse position of the window, and assign it to 2 variables x and y (co-ordinates relative to the window, not to the scree
x
y
GetCursorPos() will return to you the x/y if you pass in a pointer to a POINT structure.
Hiding the cursor can be done with ShowCursor().