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
ae71af00
Commit
ae71af00
authored
Jul 31, 2008
by
Vladimir Pankratov
Committed by
Alexandre Julliard
Jul 31, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetGroupEnum.
parent
d835bc33
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
access.c
dlls/netapi32/access.c
+12
-0
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
lmaccess.h
include/lmaccess.h
+1
-0
No files found.
dlls/netapi32/access.c
View file @
ae71af00
...
...
@@ -689,6 +689,18 @@ NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr)
return
NERR_DCNotFound
;
/* say we can't find a domain controller */
}
/************************************************************
* NetGroupEnum (NETAPI32.@)
*
*/
NET_API_STATUS
WINAPI
NetGroupEnum
(
LPCWSTR
servername
,
DWORD
level
,
LPBYTE
*
bufptr
,
DWORD
prefmaxlen
,
LPDWORD
entriesread
,
LPDWORD
totalentries
,
LPDWORD
resume_handle
)
{
FIXME
(
"(%s, %d, %p, %d, %p, %p, %p) stub!
\n
"
,
debugstr_w
(
servername
),
level
,
bufptr
,
prefmaxlen
,
entriesread
,
totalentries
,
resume_handle
);
return
ERROR_ACCESS_DENIED
;
}
/******************************************************************************
* NetUserModalsGet (NETAPI32.@)
...
...
dlls/netapi32/netapi32.spec
View file @
ae71af00
...
...
@@ -98,7 +98,7 @@
@ stub NetGroupAddUser
@ stub NetGroupDel
@ stub NetGroupDelUser
@ st
ub NetGroupEnum
@ st
dcall NetGroupEnum(wstr long ptr long ptr ptr ptr)
@ stub NetGroupGetInfo
@ stub NetGroupGetUsers
@ stub NetGroupSetInfo
...
...
include/lmaccess.h
View file @
ae71af00
...
...
@@ -449,6 +449,7 @@ typedef struct _LOCALGROUP_USERS_INFO_0 {
#define LOCALGROUP_COMMENT_PARMNUM 2
NET_API_STATUS
WINAPI
NetGetDCName
(
LPCWSTR
,
LPCWSTR
,
LPBYTE
*
);
NET_API_STATUS
WINAPI
NetGroupEnum
(
LPCWSTR
,
DWORD
,
LPBYTE
*
,
DWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
NET_API_STATUS
WINAPI
NetLocalGroupAdd
(
LPCWSTR
,
DWORD
,
LPBYTE
,
LPDWORD
);
NET_API_STATUS
WINAPI
NetLocalGroupAddMember
(
LPCWSTR
,
LPCWSTR
,
PSID
);
NET_API_STATUS
WINAPI
NetLocalGroupAddMembers
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
LPBYTE
,
DWORD
);
...
...
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