netapi32: Add stub for NetShareGetInfo.
This commit is contained in:
parent
7db820e900
commit
38815e1c89
|
@ -194,7 +194,7 @@
|
|||
@ stub NetShareDelSticky
|
||||
@ stdcall NetShareEnum(wstr long ptr long ptr ptr ptr)
|
||||
@ stub NetShareEnumSticky
|
||||
@ stub NetShareGetInfo
|
||||
@ stdcall NetShareGetInfo(wstr wstr long ptr)
|
||||
@ stub NetShareSetInfo
|
||||
@ stdcall NetStatisticsGet(wstr wstr long long ptr)
|
||||
@ stdcall NetUseAdd(wstr long ptr ptr)
|
||||
|
|
|
@ -92,3 +92,14 @@ NET_API_STATUS WINAPI NetShareDel(LMSTR servername, LMSTR netname, DWORD reserve
|
|||
FIXME("Stub (%s %s %d)\n", debugstr_w(servername), debugstr_w(netname), reserved);
|
||||
return NERR_Success;
|
||||
}
|
||||
|
||||
/************************************************************
|
||||
* NetShareGetInfo (NETAPI32.@)
|
||||
*/
|
||||
NET_API_STATUS WINAPI NetShareGetInfo(LMSTR servername, LMSTR netname,
|
||||
DWORD level, LPBYTE *bufptr)
|
||||
{
|
||||
FIXME("Stub (%s %s %d %p)\n", debugstr_w(servername),
|
||||
debugstr_w(netname),level, bufptr);
|
||||
return NERR_NetNameNotFound;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue