netapi32: Add stub for NetScheduleJobDel.
This commit is contained in:
parent
b175891182
commit
8c60161148
|
@ -1098,6 +1098,12 @@ NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR server, LPBYTE bufptr, LPDWORD j
|
|||
return NERR_Success;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR server, LPBYTE* bufptr, DWORD prefmaxsize, LPDWORD entriesread,
|
||||
LPDWORD totalentries, LPDWORD resumehandle)
|
||||
{
|
||||
|
|
|
@ -167,7 +167,7 @@
|
|||
@ stub NetRplWkstaGetInfo
|
||||
@ stub NetRplWkstaSetInfo
|
||||
@ stdcall NetScheduleJobAdd(wstr ptr ptr)
|
||||
@ stub NetScheduleJobDel
|
||||
@ stdcall NetScheduleJobDel(wstr long long)
|
||||
@ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
|
||||
@ stub NetScheduleJobGetInfo
|
||||
@ stub NetServerComputerNameAdd
|
||||
|
|
|
@ -26,6 +26,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR,LPBYTE,LPDWORD);
|
||||
NET_API_STATUS WINAPI NetScheduleJobDel(LPCWSTR,DWORD,DWORD);
|
||||
NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in New Issue