netapi32: Add stub for NetScheduleJobAdd.

This commit is contained in:
Chae Jong Bin 2012-09-01 19:09:07 -04:00 committed by Alexandre Julliard
parent 6ba7a1964a
commit ecdd6c58c5
3 changed files with 8 additions and 1 deletions

View File

@ -238,6 +238,12 @@ NET_API_STATUS WINAPI NetUseEnum(LMSTR server, DWORD level, LPBYTE* bufptr, DWOR
return ERROR_NOT_SUPPORTED; 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, NET_API_STATUS WINAPI NetScheduleJobEnum(LPCWSTR server, LPBYTE* bufptr, DWORD prefmaxsize, LPDWORD entriesread,
LPDWORD totalentries, LPDWORD resumehandle) LPDWORD totalentries, LPDWORD resumehandle)
{ {

View File

@ -166,7 +166,7 @@
@ stub NetRplWkstaEnum @ stub NetRplWkstaEnum
@ stub NetRplWkstaGetInfo @ stub NetRplWkstaGetInfo
@ stub NetRplWkstaSetInfo @ stub NetRplWkstaSetInfo
@ stub NetScheduleJobAdd @ stdcall NetScheduleJobAdd(wstr ptr ptr)
@ stub NetScheduleJobDel @ stub NetScheduleJobDel
@ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr) @ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
@ stub NetScheduleJobGetInfo @ stub NetScheduleJobGetInfo

View File

@ -25,6 +25,7 @@
extern "C" { extern "C" {
#endif #endif
NET_API_STATUS WINAPI NetScheduleJobAdd(LPCWSTR,LPBYTE,LPDWORD);
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