Próbuję pobrać koordynaty myszy i wyświetlić je w MessageBoxie, jestem początkujący i nie wiem co robię źle, oto kod:
#include <windows.h>
int WINAPI WinMain (HINSTANCE hlnstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
POINT P;
GetCursorPos( & P );
MessageBox(GetForegroundWindow(),"mysz",P.x + " " + P.y,0);
}