Код: Выделить всё
POINT point;
ClientToScreen(somehwnd, (LPPOINT) &point);
Код: Выделить всё
POINT point;
ClientToScreen(somehwnd, &point);
Подробнее здесь: https://stackoverflow.com/questions/784 ... to-lppoint
Код: Выделить всё
POINT point;
ClientToScreen(somehwnd, (LPPOINT) &point);
Код: Выделить всё
POINT point;
ClientToScreen(somehwnd, &point);