mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
Fixed bug reported by winapi_check.
This commit is contained in:
parent
2d6457c11a
commit
7bfd079b37
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue