Lines Matching refs:LONG_PTR
254 LONG_PTR SetStyle(LONG_PTR style) { return SetLongPtr(GWL_STYLE, style); }
255 // LONG_PTR SetStyle(DWORD style) { return SetLongPtr(GWL_STYLE, (LONG_PTR)style); }
256 LONG_PTR GetStyle() const { return GetLongPtr(GWL_STYLE); }
259 LONG_PTR SetLong(int index, LONG newLongPtr) { return ::SetWindowLong(_window, index, newLongPtr); }
260 LONG_PTR GetLong(int index) const { return ::GetWindowLong(_window, index); }
261 LONG_PTR SetUserDataLong(LONG newLongPtr) { return SetLong(GWLP_USERDATA, newLongPtr); }
262 LONG_PTR GetUserDataLong() const { return GetLong(GWLP_USERDATA); }
267 LONG_PTR SetLongPtr(int index, LONG_PTR newLongPtr) { return SetLong(index, newLongPtr); }
268 LONG_PTR GetLongPtr(int index) const { return GetLong(index); }
270 LONG_PTR SetUserDataLongPtr(LONG_PTR newLongPtr) { return SetUserDataLong(newLongPtr); }
271 LONG_PTR GetUserDataLongPtr() const { return GetUserDataLong(); }
275 LONG_PTR SetLongPtr(int index, LONG_PTR newLongPtr)
282 LONG_PTR SetLongPtrW(int index, LONG_PTR newLongPtr)
290 LONG_PTR GetLongPtr(int index) const { return ::GetWindowLongPtr(_window, index); }
291 LONG_PTR SetUserDataLongPtr(LONG_PTR newLongPtr) { return SetLongPtr(GWLP_USERDATA, newLongPtr); }
292 LONG_PTR GetUserDataLongPtr() const { return GetLongPtr(GWLP_USERDATA); }