Changeset 2033 for trunk/src/user32/win32wbase.h
- Timestamp:
- Dec 9, 1999, 1:54:05 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2016 r2033 1 /* $Id: win32wbase.h,v 1.5 1 1999-12-07 20:43:40sandervl Exp $ */1 /* $Id: win32wbase.h,v 1.52 1999-12-09 00:53:38 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 101 101 VOID updateWindowStyle(DWORD oldExStyle,DWORD oldStyle); 102 102 103 virtual LONG SetWindowLongA(int index, ULONG value );104 virtual ULONG GetWindowLongA(int index );103 virtual LONG SetWindowLongA(int index, ULONG value, BOOL fUnicode = FALSE); 104 virtual ULONG GetWindowLongA(int index, BOOL fUnicode = FALSE); 105 105 virtual WORD SetWindowWord(int index, WORD value); 106 106 virtual WORD GetWindowWord(int index); … … 185 185 BOOL IsWindowEnabled(); 186 186 BOOL IsWindowVisible(); 187 BOOL IsUnicode() { return isUnicode; }; 187 //Created with CreateWindowExA or ExW 188 BOOL IsUnicode() { return isUnicode; }; 189 //Window procedure type 190 BOOL IsWindowUnicode(); 191 188 192 BOOL GetWindowRect(PRECT pRect); 189 193 int GetWindowTextLength(); … … 216 220 static LRESULT BroadcastMessageW(int type, UINT msg, WPARAM wParam, LPARAM lParam); 217 221 218 LRESULT DefWindowProcA(UINT Msg, WPARAM wParam, LPARAM lParam , BOOL fReentered = FALSE);222 LRESULT DefWindowProcA(UINT Msg, WPARAM wParam, LPARAM lParam); 219 223 LRESULT DefWindowProcW(UINT msg, WPARAM wParam, LPARAM lParam); 220 224
Note:
See TracChangeset
for help on using the changeset viewer.