Changeset 238 for trunk/src/helpers/winh.c
- Timestamp:
- Dec 24, 2002, 8:44:35 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/winh.c
r235 r238 120 120 { 121 121 // put the call in brackets so the macro won't apply here 122 return ( (WinSendMsg)(hwnd, msg, mp1, mp2));122 return (WinSendMsg)(hwnd, msg, mp1, mp2); 123 123 } 124 124 … … 138 138 MRESULT winhSendDlgItemMsg(HWND hwnd, ULONG id, ULONG msg, MPARAM mp1, MPARAM mp2) 139 139 { 140 return ( (WinSendDlgItemMsg)(hwnd, id, msg, mp1, mp2));140 return (WinSendDlgItemMsg)(hwnd, id, msg, mp1, mp2); 141 141 } 142 142 … … 157 157 { 158 158 // put the call in brackets so the macro won't apply here 159 return ( (WinPostMsg)(hwnd, msg, mp1, mp2));159 return (WinPostMsg)(hwnd, msg, mp1, mp2); 160 160 } 161 161 … … 169 169 { 170 170 // put the call in brackets so the macro won't apply here 171 return ( (WinWindowFromID)(hwnd, id));171 return (WinWindowFromID)(hwnd, id); 172 172 } 173 173 … … 181 181 { 182 182 // put the call in brackets so the macro won't apply here 183 return ( (WinQueryWindow)(hwnd, lCode));183 return (WinQueryWindow)(hwnd, lCode); 184 184 } 185 185 … … 193 193 { 194 194 // put the call in brackets so the macro won't apply here 195 return ( (WinQueryWindowPtr)(hwnd, index));195 return (WinQueryWindowPtr)(hwnd, index); 196 196 } 197 197 … … 2617 2617 ULONG ul = 0; 2618 2618 2619 /* if (!WinIsWindowVisible(hwndDlg))2620 return (FALSE); */2621 2622 2619 if ((pmpFlags) && (pxac)) 2623 2620 {
Note:
See TracChangeset
for help on using the changeset viewer.