Changeset 81 for trunk/src/helpers/winh.c
- Timestamp:
- Jun 23, 2001, 11:12:49 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/winh.c
r76 r81 160 160 // put the call in brackets so the macro won't apply here 161 161 return ((WinQueryWindow)(hwnd, lCode)); 162 } 163 164 /* 165 *@@ winhQueryWindowPtr: 166 * 167 *@@added V0.9.13 (2001-06-21) [umoeller] 168 */ 169 170 PVOID winhQueryWindowPtr(HWND hwnd, LONG index) 171 { 172 // put the call in brackets so the macro won't apply here 173 return ((WinQueryWindowPtr)(hwnd, index)); 174 } 175 176 /* 177 *@@ winhSetWindowText: 178 * 179 *@@added V0.9.13 (2001-06-21) [umoeller] 180 */ 181 182 BOOL winhSetWindowText(HWND hwnd, const char *pcsz) 183 { 184 // put the call in brackets so the macro won't apply here 185 return (WinSetWindowText)(hwnd, (PSZ)pcsz); 186 } 187 188 /* 189 *@@ winhSetDlgItemText: 190 * 191 *@@added V0.9.13 (2001-06-21) [umoeller] 192 */ 193 194 BOOL winhSetDlgItemText(HWND hwnd, ULONG id, const char *pcsz) 195 { 196 // put the call in brackets so the macro won't apply here 197 return (WinSetDlgItemText)(hwnd, id, (PSZ)pcsz); 162 198 } 163 199
Note:
See TracChangeset
for help on using the changeset viewer.