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
2f57b9f3
Commit
2f57b9f3
authored
Nov 21, 2005
by
Ge van Geldorp
Committed by
Alexandre Julliard
Nov 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some prototypes to match the PSDK.
parent
de9d974f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
access.c
dlls/netapi32/access.c
+4
-4
netapi32.c
dlls/netapi32/netapi32.c
+1
-1
lmaccess.h
include/lmaccess.h
+1
-1
No files found.
dlls/netapi32/access.c
View file @
2f57b9f3
...
...
@@ -95,8 +95,8 @@ static BOOL NETAPI_IsKnownUser(LPCWSTR UserName)
/************************************************************
* NetUserAdd (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetUserAdd
(
L
M
STR
servername
,
DWORD
level
,
LPBYTE
*
bufptr
,
LPDWORD
parm_err
)
NET_API_STATUS
WINAPI
NetUserAdd
(
L
PCW
STR
servername
,
DWORD
level
,
LPBYTE
bufptr
,
LPDWORD
parm_err
)
{
NET_API_STATUS
status
;
FIXME
(
"(%s, %ld, %p, %p) stub!
\n
"
,
debugstr_w
(
servername
),
level
,
bufptr
,
parm_err
);
...
...
@@ -433,7 +433,7 @@ static void ACCESS_CopyDisplayUser(PNET_DISPLAY_USER dest, LPWSTR *dest_buf,
*/
NET_API_STATUS
WINAPI
NetQueryDisplayInformation
(
LPWSTR
ServerName
,
DWORD
Level
,
DWORD
Index
,
DWORD
EntriesRequested
,
LP
C
WSTR
ServerName
,
DWORD
Level
,
DWORD
Index
,
DWORD
EntriesRequested
,
DWORD
PreferredMaximumLength
,
LPDWORD
ReturnedEntryCount
,
PVOID
*
SortedBuffer
)
{
...
...
@@ -540,7 +540,7 @@ NetQueryDisplayInformation(
*/
NET_API_STATUS
WINAPI
NetGetDCName
(
LP
WSTR
servername
,
LP
WSTR
domainname
,
LPBYTE
*
bufptr
)
NetGetDCName
(
LP
CWSTR
servername
,
LPC
WSTR
domainname
,
LPBYTE
*
bufptr
)
{
FIXME
(
"(%s, %s, %p) stub!
\n
"
,
debugstr_w
(
servername
),
debugstr_w
(
domainname
),
bufptr
);
...
...
dlls/netapi32/netapi32.c
View file @
2f57b9f3
...
...
@@ -71,7 +71,7 @@ NET_API_STATUS WINAPI NetServerEnum(
/************************************************************
* NetServerGetInfo (NETAPI32.@)
*/
NET_API_STATUS
WINAPI
NetServerGetInfo
(
L
PCW
STR
servername
,
DWORD
level
,
LPBYTE
*
bufptr
)
NET_API_STATUS
WINAPI
NetServerGetInfo
(
L
M
STR
servername
,
DWORD
level
,
LPBYTE
*
bufptr
)
{
FIXME
(
"stub (%p, %ld, %p)
\n
"
,
servername
,
level
,
bufptr
);
return
ERROR_ACCESS_DENIED
;
...
...
include/lmaccess.h
View file @
2f57b9f3
...
...
@@ -407,7 +407,7 @@ NET_API_STATUS WINAPI NetUserGetInfo(LPCWSTR servername, LPCWSTR username,
DWORD
level
,
LPBYTE
*
bufptr
);
NET_API_STATUS
WINAPI
NetQueryDisplayInformation
(
LPWSTR
ServerName
,
DWORD
Level
,
DWORD
Index
,
DWORD
EntriesRequested
,
LP
C
WSTR
ServerName
,
DWORD
Level
,
DWORD
Index
,
DWORD
EntriesRequested
,
DWORD
PreferredMaximumLength
,
LPDWORD
ReturnedEntryCount
,
PVOID
*
SortedBuffer
);
...
...
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