Re: typelib (oleaut32): [PATCH 1/4] Implement LHASHVALOFNAMESYS
28 Aug
2008
28 Aug
'08
11:06 a.m.
Detlef Riekenberg <wine.dev(a)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(a)winehq.org
6318
Age (days ago)
6318
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard