LPRECT lpRect;
HWND hWnd = FindWindow(NULL, "Program1");
if (hWnd != NULL)
{
GetWindowRect(hWnd, lpRect);
}
GetWindowRect - ошибка!
Код:
Пишет вот такой еррор:
Access violation on adress 77D3B730 in module 'user32.dll'.Write of address 0000003C.
Или пиши:
Код:
RECT rect;
HWND hWnd = FindWindow(NULL, "Program1");
if (hWnd != NULL)
{
GetWindowRect(hWnd, &rect);
}
HWND hWnd = FindWindow(NULL, "Program1");
if (hWnd != NULL)
{
GetWindowRect(hWnd, &rect);
}
или выделяй память вручную.