問題なく動作するはずです:
#include <iostream>
#define _WIN32_WINNT 0x501
#include <windows.h>
using namespace std;
int main() {
HWND consoleWindow = GetConsoleWindow();
LPRECT lpRect;
GetWindowRect(consoleWindow,lpRect);
cout << lpRect.top <<endl;
}
しかし、代わりに私はこれを取得します:
error: request for member 'top' in 'lpRect', which is of non-class type 'LPRECT {aka tagRECT*}'