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
a9b473fa
Commit
a9b473fa
authored
Oct 05, 2011
by
Louis Lenders
Committed by
Alexandre Julliard
Oct 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetScheduleJobEnum.
parent
172cea74
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
netapi32.c
dlls/netapi32/netapi32.c
+10
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
No files found.
dlls/netapi32/netapi32.c
View file @
a9b473fa
...
...
@@ -20,6 +20,7 @@
#include "wine/debug.h"
#include "lm.h"
#include "lmat.h"
#include "netbios.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
netbios
);
...
...
@@ -236,3 +237,12 @@ NET_API_STATUS WINAPI NetUseEnum(LMSTR server, DWORD level, LPBYTE* bufptr, DWOR
entriesread
,
totalentries
,
resumehandle
);
return
ERROR_NOT_SUPPORTED
;
}
NET_API_STATUS
WINAPI
NetScheduleJobEnum
(
LPCWSTR
server
,
LPBYTE
*
bufptr
,
DWORD
prefmaxsize
,
LPDWORD
entriesread
,
LPDWORD
totalentries
,
LPDWORD
resumehandle
)
{
FIXME
(
"stub (%s, %p, %d, %p, %p, %p)
\n
"
,
debugstr_w
(
server
),
bufptr
,
prefmaxsize
,
entriesread
,
totalentries
,
resumehandle
);
*
entriesread
=
0
;
*
totalentries
=
0
;
return
NERR_Success
;
}
dlls/netapi32/netapi32.spec
View file @
a9b473fa
...
...
@@ -168,7 +168,7 @@
@ stub NetRplWkstaSetInfo
@ stub NetScheduleJobAdd
@ stub NetScheduleJobDel
@ st
ub NetScheduleJobEnum
@ st
dcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
@ stub NetScheduleJobGetInfo
@ stub NetServerComputerNameAdd
@ stub NetServerComputerNameDel
...
...
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