typelib (oleaut32): [PATCH 1/4] Implement LHASHVALOFNAMESYS

Alexandre Julliard julliard at winehq.org
Thu Aug 28 06:06:16 CDT 2008


Detlef Riekenberg <wine.dev at web.de> writes:

> +ULONG WINAPI
> +LHashValOfNameSys16(SYSKIND skind, LCID lcid, LPCSTR lpStr)
> +{
> +    TRACE("(%d, %d, %s) %s\n", skind, lcid, debugstr_a(lpStr),
> +        (skind == SYS_WIN16) ? "SYS_WIN16" : (skind == SYS_WIN32) ? "SYS_WIN32" : "");
> +    return LHashValOfNameSysA(skind, lcid, lpStr);
> +}

You don't need to introduce a 16-bit function if all it does is forward
to the 32-bit one.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list