Changeset 7334 for trunk/src/comctl32/comctl32.c
- Timestamp:
- Nov 14, 2001, 1:30:46 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/comctl32.c
r6709 r7334 441 441 DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style) 442 442 { 443 #ifdef __WIN32OS2__ 444 LPSTR p; 445 STACK_strdupWtoA(text, p) 446 #else 443 447 LPSTR p = HEAP_strdupWtoA (GetProcessHeap (), 0, text); 448 #endif 444 449 DrawStatusTextA (hdc, lprc, p, style); 450 #ifndef __WIN32OS2__ 445 451 HeapFree (GetProcessHeap (), 0, p ); 452 #endif 446 453 } 447 454
Note:
See TracChangeset
for help on using the changeset viewer.