netapi32: Add stub for NetScheduleJobDel.

This commit is contained in:
Qian Hong 2014-03-21 18:06:42 +08:00 committed by Alexandre Julliard
parent b175891182
commit 8c60161148
3 changed files with 8 additions and 1 deletions

View file

@ -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)
{ {

View file

@ -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

View file

@ -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