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
fb2017d4
Commit
fb2017d4
authored
Aug 04, 2006
by
Robert Reif
Committed by
Alexandre Julliard
Aug 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetUserGetLocalGroups.
parent
651ac469
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
access.c
dlls/netapi32/access.c
+13
-1
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
No files found.
dlls/netapi32/access.c
View file @
fb2017d4
...
...
@@ -303,7 +303,19 @@ NetUserGetInfo(LPCWSTR servername, LPCWSTR username, DWORD level,
return
NERR_Success
;
}
/************************************************************
* NetUserGetLocalGroups (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetUserGetLocalGroups
(
LPCWSTR
servername
,
LPCWSTR
username
,
DWORD
level
,
DWORD
flags
,
LPBYTE
*
bufptr
,
DWORD
prefmaxlen
,
LPDWORD
entriesread
,
LPDWORD
totalentries
)
{
FIXME
(
"(%s, %s, %ld, %08lx, %p %ld, %p, %p) stub!
\n
"
,
debugstr_w
(
servername
),
debugstr_w
(
username
),
level
,
flags
,
bufptr
,
prefmaxlen
,
entriesread
,
totalentries
);
return
NERR_InternalError
;
}
/************************************************************
* NetUserEnum (NETAPI32.@)
...
...
dlls/netapi32/netapi32.spec
View file @
fb2017d4
...
...
@@ -205,7 +205,7 @@
@ stdcall NetUserEnum(wstr long long ptr long ptr ptr ptr)
@ stub NetUserGetGroups
@ stdcall NetUserGetInfo(wstr wstr long ptr)
@ st
ub NetUserGetLocalGroups
@ st
dcall NetUserGetLocalGroups(ptr ptr long long ptr long ptr ptr);
@ stdcall NetUserModalsGet(wstr long ptr)
@ stub NetUserModalsSet
@ stub NetUserSetGroups
...
...
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