- C/C++ code
BOOL GetWindowRect( HWND hWnd, LPRECT lpRect ); //如题,怎么我看msdn中这个函数要在OS Versions: Windows CE 1.0 and later中使用啊?可不可以直接用在console中?
------解决方案--------------------------------------------------------
可以啊
HWND hWnd = GetDesktopWindow();
BOOL bResult = GetWindowRect( hWnd, &rect );