Commit 15a1723c authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

ole32: In 16-bit OLE, LPOLESTR uses multibyte, not Unicode characters so make…

ole32: In 16-bit OLE, LPOLESTR uses multibyte, not Unicode characters so make LoadTypeLib16 take an LPSTR instead of LPOLESTR.
parent ab7f796f
......@@ -120,10 +120,10 @@ QueryPathOfRegTypeLib16(
* Both parameters are FAR pointers.
*/
HRESULT WINAPI LoadTypeLib16(
LPOLESTR szFile, /* [in] Name of file to load from */
LPSTR szFile, /* [in] Name of file to load from */
ITypeLib** pptLib) /* [out] Destination for loaded ITypeLib interface */
{
FIXME("(%s,%p): stub\n",debugstr_w((LPWSTR)szFile),pptLib);
FIXME("(%s,%p): stub\n",debugstr_a(szFile),pptLib);
if (pptLib!=0)
*pptLib=0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment