netapi32: Fix the NetUseAdd() calling convention.

This commit is contained in:
Francois Gouget 2007-08-03 00:45:40 +02:00 committed by Alexandre Julliard
parent 04a0483273
commit cec957d684
1 changed files with 1 additions and 1 deletions

View File

@ -833,7 +833,7 @@ NET_API_STATUS WINAPI NetUserChangePassword(LPCWSTR domainname, LPCWSTR username
return NERR_Success;
}
NET_API_STATUS NetUseAdd(LMSTR servername, DWORD level, LPBYTE bufptr, LPDWORD parm_err)
NET_API_STATUS WINAPI NetUseAdd(LMSTR servername, DWORD level, LPBYTE bufptr, LPDWORD parm_err)
{
FIXME("%s %d %p %p stub\n", debugstr_w(servername), level, bufptr, parm_err);
return NERR_Success;