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
7bfd079b
Commit
7bfd079b
authored
Mar 28, 2000
by
Ron Gage
Committed by
Alexandre Julliard
Mar 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug reported by winapi_check.
parent
2d6457c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
winnet16.h
include/wine/winnet16.h
+1
-1
network.c
misc/network.c
+2
-2
No files found.
include/wine/winnet16.h
View file @
7bfd079b
...
...
@@ -180,7 +180,7 @@ WORD WINAPI WNetGetCaps16(WORD);
* Get User
*/
WORD
WINAPI
WNetGetUser16
(
LPSTR
,
LPINT16
);
WORD
WINAPI
WNetGetUser16
(
LP
CSTR
,
LP
STR
,
LPINT16
);
/*
...
...
misc/network.c
View file @
7bfd079b
...
...
@@ -295,9 +295,9 @@ WORD WINAPI WNetGetCaps16( WORD capability )
/**************************************************************************
* WNetGetUser16 [USER.516]
*/
WORD
WINAPI
WNetGetUser16
(
LPSTR
szUser
,
LPINT16
nBufferSize
)
WORD
WINAPI
WNetGetUser16
(
LP
CSTR
lpName
,
LP
STR
szUser
,
LPINT16
nBufferSize
)
{
FIXME
(
"(%p, %p
): stub
\n
"
,
szUser
,
nBufferSize
);
FIXME
(
"(%p, %p
, %p): stub
\n
"
,
lpName
,
szUser
,
nBufferSize
);
return
WN16_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