Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8c601611
Commit
8c601611
authored
Mar 21, 2014
by
Qian Hong
Committed by
Alexandre Julliard
Mar 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetScheduleJobDel.
parent
b1758911
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
netapi32.c
dlls/netapi32/netapi32.c
+6
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
lmat.h
include/lmat.h
+1
-0
No files found.
dlls/netapi32/netapi32.c
View file @
8c601611
...
@@ -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
)
{
{
...
...
dlls/netapi32/netapi32.spec
View file @
8c601611
...
@@ -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)
@ st
ub NetScheduleJobDel
@ st
dcall 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
...
...
include/lmat.h
View file @
8c601611
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment