mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NETAPI32] Use our implementation of NetWkstaUserEnum instead of the Wine stub
This commit is contained in:
parent
87a4624e20
commit
2a3c94e301
2 changed files with 2 additions and 13 deletions
|
@ -419,19 +419,6 @@ NET_API_STATUS WINAPI NetWkstaUserGetInfo(LMSTR reserved, DWORD level,
|
|||
return NERR_Success;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
* NetWkstaUserEnum (NETAPI32.@)
|
||||
*/
|
||||
NET_API_STATUS WINAPI
|
||||
NetWkstaUserEnum(LMSTR servername, DWORD level, LPBYTE* bufptr,
|
||||
DWORD prefmaxlen, LPDWORD entriesread,
|
||||
LPDWORD totalentries, LPDWORD resumehandle)
|
||||
{
|
||||
FIXME("(%s, %d, %p, %d, %p, %p, %p): stub!\n", debugstr_w(servername),
|
||||
level, bufptr, prefmaxlen, entriesread, totalentries, resumehandle);
|
||||
return ERROR_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
* NetpGetComputerName (NETAPI32.@)
|
||||
*/
|
||||
|
|
|
@ -1035,6 +1035,7 @@ NetWkstaTransportEnum(
|
|||
|
||||
return status;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
|
@ -1108,6 +1109,7 @@ NetWkstaUserEnum(
|
|||
}
|
||||
|
||||
|
||||
#if 0
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetWkstaUserGetInfo(
|
||||
|
|
Loading…
Reference in a new issue