Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e668a9db
Commit
e668a9db
authored
Oct 09, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 09, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new include file ws2spi.h for adding needed types.
parent
5bc7d736
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
async.c
dlls/winsock/async.c
+3
-1
Makefile.in
include/Makefile.in
+1
-0
ws2spi.h
include/ws2spi.h
+24
-0
No files found.
dlls/winsock/async.c
View file @
e668a9db
...
...
@@ -82,9 +82,11 @@
#include "wingdi.h"
#include "winuser.h"
#include "winsock2.h"
#include "ws2spi.h"
#include "wine/winsock16.h"
#include "winnt.h"
#include "wine/port.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
winsock
);
...
...
@@ -694,7 +696,7 @@ INT16 WINAPI WSACancelAsyncRequest16(HANDLE16 hAsyncTaskHandle)
/***********************************************************************
* WSApSetPostRoutine (WS2_32.24)
*/
INT
WINAPI
WSApSetPostRoutine
(
LP
VOID
/* LPWPUPOSTMESSAGE */
lpPostRoutine
)
INT
WINAPI
WSApSetPostRoutine
(
LP
WPUPOSTMESSAGE
lpPostRoutine
)
{
FIXME
(
"(%p), stub !
\n
"
,
lpPostRoutine
);
return
0
;
...
...
include/Makefile.in
View file @
e668a9db
...
...
@@ -185,6 +185,7 @@ INSTALLED_INCLUDES = \
winver.h
\
wnaspi32.h
\
wownt32.h
\
ws2spi.h
\
wshisotp.h
\
wsipx.h
\
wtypes.h
\
...
...
include/ws2spi.h
0 → 100644
View file @
e668a9db
/* WS2SPI.H -- definitions to be used with the WinSock service provider. */
#ifndef _WINSOCK2SPI_
#define _WINSOCK2SPI_
#ifndef _WINSOCK2API_
#include "winsock2.h"
#endif
/* !defined(_WINSOCK2API_) */
#include "pshpack4.h"
#ifdef __cplusplus
extern
"C"
{
#endif
/* defined(__cplusplus) */
typedef
BOOL
WINAPI
(
*
LPWPUPOSTMESSAGE
)(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
/* defined(__cplusplus) */
#include "poppack.h"
#endif
/* !defined(_WINSOCK2SPI_) */
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