Changeset 325 for trunk/src/user32/new/win32wnd.h
- Timestamp:
- Jul 18, 1999, 12:39:52 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/new/win32wnd.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wnd.h
r324 r325 1 /* $Id: win32wnd.h,v 1. 7 1999-07-17 18:30:52 sandervl Exp $ */1 /* $Id: win32wnd.h,v 1.8 1999-07-18 10:39:52 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Code for OS/2 … … 66 66 ULONG MsgPaint(ULONG tmp1, ULONG tmp2); 67 67 ULONG MsgEraseBackGround(ULONG hps); 68 ULONG MsgSetText(LPSTR lpsz, LONG cch); 68 69 69 70 virtual LONG SetWindowLongA(int index, ULONG value); … … 105 106 BOOL IsWindowVisible(); 106 107 108 BOOL GetWindowRect(PRECT pRect); 109 int GetWindowTextLengthA(); 110 int GetWindowTextA(LPSTR lpsz, int cch); 111 BOOL SetWindowTextA(LPCSTR lpsz); 112 107 113 LRESULT SendMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 108 114 LRESULT SendMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); … … 119 125 120 126 protected: 127 LRESULT SendInternalMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 128 LRESULT SendInternalMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); 121 129 void Init(); 122 130 … … 173 181 RECT *newClientRect ); 174 182 175 LRESULT sendMessage(ULONG msg, WPARAM wParam, LPARAM lParam)183 LRESULT SendInternalMessage(ULONG msg, WPARAM wParam, LPARAM lParam) 176 184 { 177 185 if(isUnicode) 178 return Send MessageW(msg, wParam, lParam);179 else return Send MessageA(msg, wParam, lParam);186 return SendInternalMessageW(msg, wParam, lParam); 187 else return SendInternalMessageA(msg, wParam, lParam); 180 188 } 181 189 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
