Hi, Patch to add proper names to ordinal-only functions in ComCtl32, although most names are already there. Rob Changelog: - Add proper names to ordinal-only functions
Index: wine/dlls/comctl32/comctl32.spec =================================================================== RCS file: /home/wine/wine/dlls/comctl32/comctl32.spec,v retrieving revision 1.39 diff -u -r1.39 comctl32.spec --- wine/dlls/comctl32/comctl32.spec 11 May 2003 03:40:59 -0000 1.39 +++ wine/dlls/comctl32/comctl32.spec 10 Sep 2003 15:01:43 -0000 @@ -94,8 +94,8 @@ 386 stdcall -noname DPA_DestroyCallback(ptr ptr long) 387 stdcall -noname DSA_EnumCallback(ptr ptr long) 388 stdcall -noname DSA_DestroyCallback(ptr ptr long) -389 stub @ -390 stub @ +389 stub -noname SHGetProcessDword +390 stub -noname ImageList_SetColorTable 400 stdcall -noname CreateMRUListW(ptr) 401 stdcall -noname AddMRUStringW(long wstr) 402 stdcall -noname FindMRUStringW(long wstr ptr) @@ -105,14 +105,14 @@ 411 stdcall GetWindowSubclass(long ptr long ptr) 412 stdcall RemoveWindowSubclass(long ptr long) 413 stdcall DefSubclassProc(long long long long) -414 stub @ -415 stdcall @(long long long long long) COMCTL32_415 -416 stub @ -417 stdcall @(long long long long ptr wstr long ptr) COMCTL32_417 -418 stub @ -419 stdcall @(long long long long) COMCTL32_419 -420 stub @ -421 stub @ +414 stub -noname MirrorIcon +415 stdcall -noname DrawTextWrap(long long long long long) +416 stub -noname DrawTextExPrivWrap +417 stdcall -noname ExtTextOutWrap(long long long long ptr wstr long ptr) +418 stub -noname GetCharWidthWrap +419 stdcall -noname GetTextExtentPointWrap(long long long long) +420 stub -noname GetTextExtentPoint32Wrap +421 stub -noname TextOutWrap # Functions imported by name Index: wine/dlls/comctl32/comctl32undoc.c =================================================================== RCS file: /home/wine/wine/dlls/comctl32/comctl32undoc.c,v retrieving revision 1.82 diff -u -r1.82 comctl32undoc.c --- wine/dlls/comctl32/comctl32undoc.c 5 Sep 2003 23:08:43 -0000 1.82 +++ wine/dlls/comctl32/comctl32undoc.c 10 Sep 2003 15:01:45 -0000 @@ -165,7 +165,7 @@ /* store the handle to the dpa */ *phDpa = hDpa; - FIXME ("new hDpa=%p\n", hDpa); + FIXME ("new hDpa=%p, errorcode=%lx\n", hDpa, errCode); return errCode; } @@ -2741,7 +2741,7 @@ * Parameter 1 is an HWND, you're on your own for the rest. */ -BOOL WINAPI COMCTL32_415( HWND hwnd, DWORD b, DWORD c, DWORD d, DWORD e) +BOOL WINAPI DrawTextWrap( HWND hwnd, DWORD b, DWORD c, DWORD d, DWORD e) { FIXME("(%p, %lx, %lx, %lx, %lx): stub!\n", hwnd, b, c, d, e); @@ -2753,7 +2753,7 @@ * @ [COMCTL32.417] * */ -BOOL WINAPI COMCTL32_417(HDC hdc, INT x, INT y, UINT flags, const RECT *lprect, +BOOL WINAPI ExtTextOutWrap(HDC hdc, INT x, INT y, UINT flags, const RECT *lprect, LPCWSTR str, UINT count, const INT *lpDx) { return ExtTextOutW(hdc, x, y, flags, lprect, str, count, lpDx); @@ -2765,7 +2765,7 @@ * FIXME: What's this supposed to do? */ -BOOL WINAPI COMCTL32_419( DWORD a, DWORD b, DWORD c, DWORD d) +BOOL WINAPI GetTextExtentPointWrap( DWORD a, DWORD b, DWORD c, DWORD d) { FIXME("(%lx, %lx, %lx, %lx): stub!\n", a, b, c, d);