Commit 8c601611 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

netapi32: Add stub for NetScheduleJobDel.

parent b1758911
...@@ -1098,6 +1098,12 @@ NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR server, LPBYTE bufptr, LPDWORD j ...@@ -1098,6 +1098,12 @@ NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR server, LPBYTE bufptr, LPDWORD j
return NERR_Success; 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, NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR server, LPBYTE* bufptr, DWORD prefmaxsize, LPDWORD entriesread,
LPDWORD totalentries, LPDWORD resumehandle) LPDWORD totalentries, LPDWORD resumehandle)
{ {
......
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
@ stub NetRplWkstaGetInfo @ stub NetRplWkstaGetInfo
@ stub NetRplWkstaSetInfo @ stub NetRplWkstaSetInfo
@ stdcall NetScheduleJobAdd(wstr ptr ptr) @ stdcall NetScheduleJobAdd(wstr ptr ptr)
@ stub NetScheduleJobDel @ stdcall NetScheduleJobDel(wstr long long)
@ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr) @ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
@ stub NetScheduleJobGetInfo @ stub NetScheduleJobGetInfo
@ stub NetServerComputerNameAdd @ stub NetServerComputerNameAdd
......
...@@ -26,6 +26,7 @@ extern "C" { ...@@ -26,6 +26,7 @@ extern "C" {
#endif #endif
NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR,LPBYTE,LPDWORD); 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); NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
#ifdef __cplusplus #ifdef __cplusplus
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment