netapi32: Implement NetScheduleJobDel.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5ce26d11de
commit
0ddcd1bb58
|
@ -1147,8 +1147,8 @@ NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR server, LPBYTE bufptr, LPDWORD j
|
|||
|
||||
NET_API_STATUS WINAPI NetScheduleJobDel(LPCWSTR server, DWORD minjobid, DWORD maxjobid)
|
||||
{
|
||||
FIXME("stub (%s, %d, %d)\n", debugstr_w(server), minjobid, maxjobid);
|
||||
return NERR_Success;
|
||||
TRACE("(%s, %u, %u)\n", debugstr_w(server), minjobid, maxjobid);
|
||||
return NetrJobDel(server, minjobid, maxjobid);
|
||||
}
|
||||
|
||||
NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR server, LPBYTE* bufptr, DWORD prefmaxsize, LPDWORD entriesread,
|
||||
|
|
Loading…
Reference in New Issue