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
ee120e01
Commit
ee120e01
authored
Jul 30, 2008
by
Vladimir Pankratov
Committed by
Alexandre Julliard
Jul 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Add stub for NetWkstaUserEnum.
parent
809fe637
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
netapi32.spec
dlls/netapi32/netapi32.spec
+1
-1
wksta.c
dlls/netapi32/wksta.c
+13
-0
lmwksta.h
include/lmwksta.h
+1
-0
No files found.
dlls/netapi32/netapi32.spec
View file @
ee120e01
...
...
@@ -217,7 +217,7 @@
@ stub NetWkstaTransportAdd
@ stub NetWkstaTransportDel
@ stdcall NetWkstaTransportEnum (wstr long ptr long ptr ptr ptr)
@ st
ub NetWkstaUserEnum
@ st
dcall NetWkstaUserEnum(wstr long ptr long ptr ptr ptr)
@ stdcall NetWkstaUserGetInfo(wstr long ptr)
@ stub NetWkstaUserSetInfo
@ stdcall NetapipBufferAllocate(long ptr) NetApiBufferAllocate
...
...
dlls/netapi32/wksta.c
View file @
ee120e01
...
...
@@ -444,6 +444,19 @@ NET_API_STATUS WINAPI NetWkstaUserGetInfo(LMSTR reserved, DWORD level,
}
/************************************************************
* NetWkstaUserEnum (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetWkstaUserEnum
(
LMSTR
servername
,
DWORD
level
,
LPBYTE
*
bufptr
,
DWORD
prefmaxlen
,
LPDWORD
entriesread
,
LPDWORD
totalentries
,
LPDWORD
resumehandle
)
{
FIXME
(
"(%s, %d, %p, %d, %p, %p, %p): stub!
\n
"
,
debugstr_w
(
servername
),
level
,
bufptr
,
prefmaxlen
,
entriesread
,
totalentries
,
resumehandle
);
return
ERROR_INVALID_PARAMETER
;
}
/************************************************************
* NetpGetComputerName (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetpGetComputerName
(
LPWSTR
*
Buffer
)
...
...
include/lmwksta.h
View file @
ee120e01
...
...
@@ -83,6 +83,7 @@ NET_API_STATUS WINAPI NetWkstaTransportDel(LMSTR,LMSTR,DWORD);
NET_API_STATUS
WINAPI
NetWkstaTransportEnum
(
LMSTR
,
DWORD
,
LPBYTE
*
,
DWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
NET_API_STATUS
WINAPI
NetWkstaUserGetInfo
(
LMSTR
,
DWORD
,
LPBYTE
*
);
NET_API_STATUS
WINAPI
NetWkstaUserSetInfo
(
LMSTR
,
DWORD
,
LPBYTE
,
LPDWORD
);
NET_API_STATUS
WINAPI
NetWkstaUserEnum
(
LMSTR
,
DWORD
,
LPBYTE
*
,
DWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
#ifdef __cplusplus
}
...
...
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