Changeset 7342 for trunk/src/comctl32/comctl32.c
- Timestamp:
- Nov 14, 2001, 7:39:52 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/comctl32.c
r7334 r7342 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 #else447 443 LPSTR p = HEAP_strdupWtoA (GetProcessHeap (), 0, text); 448 #endif449 444 DrawStatusTextA (hdc, lprc, p, style); 450 #ifndef __WIN32OS2__451 445 HeapFree (GetProcessHeap (), 0, p ); 452 #endif453 446 } 454 447
Note:
See TracChangeset
for help on using the changeset viewer.