Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b462e34c
Commit
b462e34c
authored
Oct 14, 2009
by
Paul Chitescu
Committed by
Alexandre Julliard
Oct 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetFileEnum().
parent
d11df512
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
share.c
dlls/netapi32/share.c
+13
-0
No files found.
dlls/netapi32/netapi32.spec
View file @
b462e34c
...
...
@@ -88,7 +88,7 @@
@ stub NetErrorLogRead
@ stub NetErrorLogWrite
@ stub NetFileClose
@ st
ub NetFileEnum
@ st
dcall NetFileEnum(wstr wstr wstr long ptr long ptr ptr ptr)
@ stub NetFileGetInfo
@ stub NetGetAnyDCName
@ stdcall NetGetDCName(wstr wstr ptr)
...
...
dlls/netapi32/share.c
View file @
b462e34c
...
...
@@ -113,3 +113,16 @@ NET_API_STATUS WINAPI NetShareAdd(LMSTR servername,
FIXME
(
"Stub (%s %d %p %p)
\n
"
,
debugstr_w
(
servername
),
level
,
buf
,
parm_err
);
return
ERROR_NOT_SUPPORTED
;
}
/************************************************************
* NetFileEnum (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetFileEnum
(
LPWSTR
ServerName
,
LPWSTR
BasePath
,
LPWSTR
UserName
,
DWORD
Level
,
LPBYTE
*
BufPtr
,
DWORD
PrefMaxLen
,
LPDWORD
EntriesRead
,
LPDWORD
TotalEntries
,
PDWORD_PTR
ResumeHandle
)
{
FIXME
(
"(%s, %s, %s, %u): stub
\n
"
,
debugstr_w
(
ServerName
),
debugstr_w
(
BasePath
),
debugstr_w
(
UserName
),
Level
);
return
ERROR_NOT_SUPPORTED
;
}
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