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
e958dc2e
Commit
e958dc2e
authored
Oct 12, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Win64 printf format fixes.
parent
9e5fadab
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
38 deletions
+46
-38
Makefile.in
dlls/ws2_32/Makefile.in
+1
-1
async.c
dlls/ws2_32/async.c
+1
-1
socket.c
dlls/ws2_32/socket.c
+33
-33
winsock.h
include/winsock.h
+11
-3
No files found.
dlls/ws2_32/Makefile.in
View file @
e958dc2e
EXTRADEFS
=
-DUSE_WS_PREFIX
-DWINE_NO_LONG_AS_INT
EXTRADEFS
=
-DUSE_WS_PREFIX
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/ws2_32/async.c
View file @
e958dc2e
...
...
@@ -767,7 +767,7 @@ INT WINAPI WSApSetPostRoutine(LPWPUPOSTMESSAGE lpPostRoutine)
WSAEVENT
WINAPI
WPUCompleteOverlappedRequest
(
SOCKET
s
,
LPWSAOVERLAPPED
overlapped
,
DWORD
error
,
DWORD
transferred
,
LPINT
errcode
)
{
FIXME
(
"(0x%08x,%p,0x%08
lx,0x%08l
x,%p), stub !
\n
"
,
s
,
overlapped
,
error
,
transferred
,
errcode
);
FIXME
(
"(0x%08x,%p,0x%08
x,0x%08
x,%p), stub !
\n
"
,
s
,
overlapped
,
error
,
transferred
,
errcode
);
if
(
errcode
)
*
errcode
=
WSAEINVAL
;
...
...
dlls/ws2_32/socket.c
View file @
e958dc2e
This diff is collapsed.
Click to expand it.
include/winsock.h
View file @
e958dc2e
...
...
@@ -115,13 +115,21 @@
typedef
unsigned
char
WS_u_char
;
typedef
unsigned
short
WS_u_short
;
typedef
unsigned
int
WS_u_int
;
#ifdef _MSC_VER
typedef
unsigned
long
WS_u_long
;
#else
typedef
unsigned
int
WS_u_long
;
#endif
#elif (defined(_MSC_VER) || defined(__MINGW_H) || defined(__WATCOMC__)) && !defined(_BSDTYPES_DEFINED)
/* MinGW doesn't define the u_xxx types */
typedef
unsigned
char
u_char
;
typedef
unsigned
char
u_char
;
typedef
unsigned
short
u_short
;
typedef
unsigned
int
u_int
;
typedef
unsigned
long
u_long
;
typedef
unsigned
int
u_int
;
#ifdef _MSC_VER
typedef
unsigned
long
u_long
;
#else
typedef
unsigned
int
u_long
;
#endif
#define _BSDTYPES_DEFINED
#endif
...
...
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