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
07b4422a
Commit
07b4422a
authored
Jul 02, 2001
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stdcall->cdecl thunks for inet_network and getnetbyname.
parent
043f6402
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
protocol.c
dlls/wsock32/protocol.c
+16
-0
wsock32.spec
dlls/wsock32/wsock32.spec
+2
-2
No files found.
dlls/wsock32/protocol.c
View file @
07b4422a
...
...
@@ -249,3 +249,19 @@ INT WINAPI EnumProtocolsW( LPINT lpiProtocols, LPVOID lpBuffer,
return
WSOCK32_EnumProtocol
(
lpiProtocols
,
(
PROTOCOL_INFOA
*
)
lpBuffer
,
lpdwLength
,
TRUE
);
}
/*****************************************************************************
* inet_network [WSOCK32.1100]
*/
unsigned
int
WINAPI
WSOCK32_inet_network
(
const
char
*
cp
)
{
return
inet_network
(
cp
);
}
/*****************************************************************************
* getnetbyname [WSOCK32.1101]
*/
struct
netent
WINAPI
*
WSOCK32_getnetbyname
(
const
char
*
name
)
{
return
getnetbyname
(
name
);
}
dlls/wsock32/wsock32.spec
View file @
07b4422a
...
...
@@ -60,8 +60,8 @@ debug_channels (winsock)
# ... as it is, they don't
#1000 stub WSApSetPostRoutine
1001 stdcall WsControl(long long ptr ptr ptr ptr) WsControl
1100 stdcall inet_network(str) inet_network
1101 stdcall getnetbyname(str) getnetbyname
1100 stdcall inet_network(str)
WSOCK32_
inet_network
1101 stdcall getnetbyname(str)
WSOCK32_
getnetbyname
#1102 stub rcmd
#1103 stub rexec
#1104 stub rresvport
...
...
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