Commit 529779cf authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Fixed the signature of SysAllocStringByteLen.

parent 557066db
......@@ -431,7 +431,7 @@ HRESULT WINAPI OleTranslateColor(
* SysAllocStringByteLen [OLEAUT32.150]
*
*/
BSTR WINAPI SysAllocStringByteLen(char *in, int len)
BSTR WINAPI SysAllocStringByteLen(LPCSTR in, UINT len)
{
DWORD* newBuffer;
char* stringBuffer;
......
......@@ -24,7 +24,7 @@ extern "C" {
*/
BSTR WINAPI SysAllocString(const OLECHAR*);
BSTR WINAPI SysAllocStringByteLen(char*,int);
BSTR WINAPI SysAllocStringByteLen(LPCSTR,UINT);
BSTR WINAPI SysAllocStringLen(const OLECHAR*,UINT);
void WINAPI SysFreeString(BSTR);
INT WINAPI SysReAllocString(LPBSTR,const OLECHAR*);
......
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