Home | History | Annotate | Download | only in Windows

Lines Matching refs:CONST

30 inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass)

34 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass);
65 operator HWND() const { return _window; }
76 HWND GetParent() const { return ::GetParent(_window); }
77 bool GetWindowRect(LPRECT rect) const { return BOOLToBool(::GetWindowRect(_window,rect)); }
79 bool IsZoomed() const { return BOOLToBool(::IsZoomed(_window)); }
81 bool ClientToScreen(LPPOINT point) const { return BOOLToBool(::ClientToScreen(_window, point)); }
82 bool ScreenToClient(LPPOINT point) const { return BOOLToBool(::ScreenToClient(_window, point)); }
167 bool SetPlacement(CONST WINDOWPLACEMENT *placement) { return BOOLToBool(::SetWindowPlacement(_window, placement)); }
176 LONG_PTR GetStyle() const { return GetLongPtr(GWL_STYLE); }
177 // bool MyIsMaximized() const { return ((GetStyle() & WS_MAXIMIZE) != 0); }
180 LONG_PTR GetLong(int index) const { return ::GetWindowLong(_window, index); }
182 LONG_PTR GetUserDataLong() const { return GetLong(GWLP_USERDATA); }
188 LONG_PTR GetLongPtr(int index) const { return GetLong(index); }
191 LONG_PTR GetUserDataLongPtr() const { return GetUserDataLong(); }
210 LONG_PTR GetLongPtr(int index) const { return ::GetWindowLongPtr(_window, index); }
212 LONG_PTR GetUserDataLongPtr() const { return GetLongPtr(GWLP_USERDATA); }
244 int GetTextLength() const
246 UINT GetText(LPTSTR string, int maxCount) const
251 UINT GetText(LPWSTR string, int maxCount) const