Changeset 222 for trunk/src/helpers/comctl.c
- Timestamp:
- Sep 3, 2002, 8:17:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/comctl.c
r221 r222 133 133 */ 134 134 135 staticMRESULT EXPENTRY fnwpSeparatorLine(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)135 STATIC MRESULT EXPENTRY fnwpSeparatorLine(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) 136 136 { 137 137 MRESULT mrc = 0; … … 1074 1074 */ 1075 1075 1076 staticPANIMATIONDATA CreateAnimationData(HAB hab,1076 STATIC PANIMATIONDATA CreateAnimationData(HAB hab, 1077 1077 HWND hwndStatic, 1078 1078 USHORT cAnimations) … … 1535 1535 ********************************************************************/ 1536 1536 1537 static PFNWP G_pfnwpOrigStatic = NULL;1537 STATIC PFNWP G_pfnwpColorRectOrigStatic = NULL; 1538 1538 1539 1539 /* … … 1557 1557 */ 1558 1558 1559 staticMRESULT EXPENTRY ctl_fnwpSubclassedColorRect(HWND hwndStatic, ULONG msg, MPARAM mp1, MPARAM mp2)1559 STATIC MRESULT EXPENTRY ctl_fnwpSubclassedColorRect(HWND hwndStatic, ULONG msg, MPARAM mp1, MPARAM mp2) 1560 1560 { 1561 1561 MRESULT mrc = 0; … … 1638 1638 1639 1639 default: 1640 mrc = G_pfnwp OrigStatic(hwndStatic, msg, mp1, mp2);1640 mrc = G_pfnwpColorRectOrigStatic(hwndStatic, msg, mp1, mp2); 1641 1641 break; 1642 1642 } … … 1659 1659 ctl_fnwpSubclassedColorRect)) 1660 1660 { 1661 G_pfnwp OrigStatic = pfnwp;1661 G_pfnwpColorRectOrigStatic = pfnwp; 1662 1662 return TRUE; 1663 1663 }
Note:
See TracChangeset
for help on using the changeset viewer.