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
8d1d6a28
Commit
8d1d6a28
authored
Oct 31, 2008
by
Vitaly Perov
Committed by
Alexandre Julliard
Oct 31, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetShareAdd.
parent
933ec96a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
share.c
dlls/netapi32/share.c
+10
-0
No files found.
dlls/netapi32/netapi32.spec
View file @
8d1d6a28
...
...
@@ -188,7 +188,7 @@
@ stub NetSessionDel
@ stdcall NetSessionEnum(wstr wstr wstr long ptr long ptr ptr ptr)
@ stub NetSessionGetInfo
@ st
ub NetShareAdd
@ st
dcall NetShareAdd(wstr long ptr ptr)
@ stub NetShareCheck
@ stdcall NetShareDel(wstr wstr long)
@ stub NetShareDelSticky
...
...
dlls/netapi32/share.c
View file @
8d1d6a28
...
...
@@ -103,3 +103,13 @@ NET_API_STATUS WINAPI NetShareGetInfo(LMSTR servername, LMSTR netname,
debugstr_w
(
netname
),
level
,
bufptr
);
return
NERR_NetNameNotFound
;
}
/************************************************************
* NetShareAdd (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetShareAdd
(
LMSTR
servername
,
DWORD
level
,
LPBYTE
buf
,
LPDWORD
parm_err
)
{
FIXME
(
"Stub (%s %d %p %p)
\n
"
,
debugstr_w
(
servername
),
level
,
buf
,
parm_err
);
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