On Sunday 13 August 2006 12:08, Bojan Antonovic wrote: > (Yes, I know that there's a version for Linux. I'm even using it!) > > here the bug report for a simple start: > bojan@linux:~/Desktop/Downloads/eclipse> wine > /home/bojan/.wine/drive_c/Program\ Files/Java/jdk1.5.0_08/bin/java -jar > startup.jar ... > wine: Call from 0x7b8415c0 to unimplemented function > usp10.dll.ScriptLayout, aborting ... Can you try the attached patch?
--- ../wine-git/dlls/usp10/usp10.spec 2006-08-04 22:14:05.000000000 +0200 +++ dlls/usp10/usp10.spec 2006-08-14 09:46:37.000000000 +0200 @@ -13,7 +13,7 @@ @ stdcall ScriptIsComplex(wstr long long) @ stdcall ScriptItemize(wstr long long ptr ptr ptr ptr) @ stub ScriptJustify -@ stub ScriptLayout +@ stdcall ScriptLayout(long ptr ptr ptr) @ stdcall ScriptPlace(ptr ptr ptr long ptr ptr ptr ptr ptr) @ stdcall ScriptRecordDigitSubstitution(ptr ptr) @ stdcall ScriptShape(ptr ptr ptr long long ptr ptr ptr ptr ptr) --- ../wine-git/dlls/usp10/usp10.c 2006-08-08 21:13:06.000000000 +0200 +++ dlls/usp10/usp10.c 2006-08-14 09:48:55.000000000 +0200 @@ -1033,3 +1033,17 @@ return S_OK; } + +/*********************************************************************** + * ScriptLayout (USP10.@) + * + * + * RETURNS + * Success: S_OK + * Failure: Non-zero HRESULT value. + */ +HRESULT WINAPI ScriptLayout(int cRuns, const BYTE* pLevel, int* pVisualToLogical, int* pLogicalToVisul) +{ + FIXME("%d, %p, %p, %p stub\n", cRuns, pLevel, pVisualToLogical, pLogicalToVisul); + return ERROR_CALL_NOT_IMPLEMENTED; +}
_______________________________________________ wine-users mailing list wine-users@xxxxxxxxxx http://www.winehq.org/mailman/listinfo/wine-users