Changeset 1365 for trunk/src/user32/combo.cpp
- Timestamp:
- Oct 19, 1999, 9:26:08 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/combo.cpp
r1203 r1365 1 /* $Id: combo.cpp,v 1. 4 1999-10-08 21:23:37 cbratschiExp $ */1 /* $Id: combo.cpp,v 1.5 1999-10-19 19:26:07 sandervl Exp $ */ 2 2 /* 3 3 * Combo controls … … 25 25 */ 26 26 27 #define CB_GETPTR( hwnd ) ( *(LPHEADCOMBO*)(GetInfoPtr(hwnd)))27 #define CB_GETPTR( hwnd ) ((LPHEADCOMBO)(GetInfoPtr(hwnd))) 28 28 #define CB_NOTIFY( lphc, code ) \ 29 29 (SendMessageA( (lphc)->owner, WM_COMMAND, \ … … 1238 1238 if(ptr) 1239 1239 { 1240 lphc = ( *(LPHEADCOMBO*)(ptr));1240 lphc = (LPHEADCOMBO )ptr; 1241 1241 if( lphc ) return lphc->hWndLBox; 1242 1242 } … … 1775 1775 1776 1776 if(ptr) 1777 lphc = ( *(LPHEADCOMBO*)(ptr));1777 lphc = (LPHEADCOMBO)ptr; 1778 1778 1779 1779 //TRACE("[%04x]: msg %s wp %08x lp %08lx\n",
Note:
See TracChangeset
for help on using the changeset viewer.