- Timestamp:
- Dec 20, 1999, 7:22:28 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/toolbar.c
r2162 r2163 1 /* $Id: toolbar.c,v 1.2 0 1999-12-20 17:54:26achimha Exp $ */1 /* $Id: toolbar.c,v 1.21 1999-12-20 18:22:28 achimha Exp $ */ 2 2 /* 3 3 * Toolbar control … … 1568 1568 * This function implements the toolbar customization dialog. 1569 1569 */ 1570 1571 /*********************************************************************** 1572 * TOOLBAR_CustomizeDialogProc 1573 * This function implements the toolbar customization dialog. 1574 */ 1575 static BOOL WINAPI 1576 TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) 1577 { 1578 TOOLBAR_INFO *infoPtr; 1579 1580 switch (uMsg) 1581 { 1582 case WM_INITDIALOG: 1583 return TBCUSTOMIZE_InitDialog(hwnd,wParam,lParam); 1584 1585 case WM_CLOSE: 1586 return TBCUSTOMIZE_Close(hwnd,wParam,lParam); 1587 1588 case WM_COMMAND: 1589 return TBCUSTOMIZE_Command(hwnd,wParam,lParam); 1590 1591 case WM_DESTROY: 1592 return TBCUSTOMIZE_Destroy(hwnd,wParam,lParam); 1593 1594 case WM_DRAWITEM: 1595 return TBCUSTOMIZE_DrawItem(hwnd,wParam,lParam); 1596 1597 case WM_MEASUREITEM: 1598 return TBCUSTOMIZE_MeasureItem(hwnd,wParam,lParam); 1599 1600 default: 1601 return FALSE; 1602 } 1603 } 1604 1605 //WINE version - not currently used 1606 #if 0 1570 1607 static BOOL WINAPI 1571 1608 TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) … … 1727 1764 } 1728 1765 } 1766 #endif 1729 1767 1730 1768
Note:
See TracChangeset
for help on using the changeset viewer.