Commit 7bfd079b authored by Ron Gage's avatar Ron Gage Committed by Alexandre Julliard

Fixed bug reported by winapi_check.

parent 2d6457c1
......@@ -180,7 +180,7 @@ WORD WINAPI WNetGetCaps16(WORD);
* Get User
*/
WORD WINAPI WNetGetUser16(LPSTR,LPINT16);
WORD WINAPI WNetGetUser16(LPCSTR,LPSTR,LPINT16);
/*
......
......@@ -295,9 +295,9 @@ WORD WINAPI WNetGetCaps16( WORD capability )
/**************************************************************************
* WNetGetUser16 [USER.516]
*/
WORD WINAPI WNetGetUser16( LPSTR szUser, LPINT16 nBufferSize )
WORD WINAPI WNetGetUser16( LPCSTR lpName, LPSTR szUser, LPINT16 nBufferSize )
{
FIXME( "(%p, %p): stub\n", szUser, nBufferSize );
FIXME( "(%p, %p, %p): stub\n", lpName, szUser, nBufferSize );
return WN16_NOT_SUPPORTED;
}
......
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