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
ecdd6c58
Commit
ecdd6c58
authored
Sep 01, 2012
by
Chae Jong Bin
Committed by
Alexandre Julliard
Sep 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetScheduleJobAdd.
parent
6ba7a196
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 @
ecdd6c58
...
...
@@ -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
)
{
...
...
dlls/netapi32/netapi32.spec
View file @
ecdd6c58
...
...
@@ -166,7 +166,7 @@
@ stub NetRplWkstaEnum
@ stub NetRplWkstaGetInfo
@ stub NetRplWkstaSetInfo
@ st
ub NetScheduleJobAdd
@ st
dcall NetScheduleJobAdd(wstr ptr ptr)
@ stub NetScheduleJobDel
@ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
@ stub NetScheduleJobGetInfo
...
...
include/lmat.h
View file @
ecdd6c58
...
...
@@ -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
...
...
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