netapi32: Add stub for NetScheduleJobAdd.
This commit is contained in:
parent
6ba7a1964a
commit
ecdd6c58c5
|
@ -238,6 +238,12 @@ NET_API_STATUS WINAPI NetUseEnum(LMSTR server, DWORD level, LPBYTE* bufptr, DWOR
|
|||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR server, LPBYTE bufptr, LPDWORD jobid)
|
||||
{
|
||||
FIXME("stub (%s, %p, %p)\n", debugstr_w(server), bufptr, jobid);
|
||||
return NERR_Success;
|
||||
}
|
||||
|
||||
NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR server, LPBYTE* bufptr, DWORD prefmaxsize, LPDWORD entriesread,
|
||||
LPDWORD totalentries, LPDWORD resumehandle)
|
||||
{
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
@ stub NetRplWkstaEnum
|
||||
@ stub NetRplWkstaGetInfo
|
||||
@ stub NetRplWkstaSetInfo
|
||||
@ stub NetScheduleJobAdd
|
||||
@ stdcall NetScheduleJobAdd(wstr ptr ptr)
|
||||
@ stub NetScheduleJobDel
|
||||
@ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
|
||||
@ stub NetScheduleJobGetInfo
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR,LPBYTE,LPDWORD);
|
||||
NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR,LPBYTE*,DWORD,LPDWORD,LPDWORD,LPDWORD);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in New Issue