Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
82280618
Commit
82280618
authored
Dec 09, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Include ws2tcpip.h before anything else for the Windows build.
parent
956f19fa
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
39 additions
and
4 deletions
+39
-4
cookie.c
dlls/wininet/cookie.c
+4
-0
dialogs.c
dlls/wininet/dialogs.c
+4
-0
ftp.c
dlls/wininet/ftp.c
+4
-0
http.c
dlls/wininet/http.c
+4
-0
internet.c
dlls/wininet/internet.c
+4
-0
internet.h
dlls/wininet/internet.h
+0
-1
netconnection.c
dlls/wininet/netconnection.c
+4
-0
urlcache.c
dlls/wininet/urlcache.c
+11
-3
utility.c
dlls/wininet/utility.c
+4
-0
No files found.
dlls/wininet/cookie.c
View file @
82280618
...
...
@@ -23,6 +23,10 @@
#include "config.h"
#include "wine/port.h"
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
...
...
dlls/wininet/dialogs.c
View file @
82280618
...
...
@@ -21,6 +21,10 @@
#include "config.h"
#include "wine/port.h"
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <stdarg.h>
#include "windef.h"
...
...
dlls/wininet/ftp.c
View file @
82280618
...
...
@@ -30,6 +30,10 @@
#include "config.h"
#include "wine/port.h"
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/wininet/http.c
View file @
82280618
...
...
@@ -29,6 +29,10 @@
#include "config.h"
#include "wine/port.h"
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
...
...
dlls/wininet/internet.c
View file @
82280618
...
...
@@ -31,6 +31,10 @@
#define MAXHOSTNAME 100
/* from http.c */
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
...
...
dlls/wininet/internet.h
View file @
82280618
...
...
@@ -43,7 +43,6 @@
#endif
#if defined(__MINGW32__) || defined (_MSC_VER)
#include "ws2tcpip.h"
#ifndef MSG_WAITALL
#define MSG_WAITALL 0
#endif
...
...
dlls/wininet/netconnection.c
View file @
82280618
...
...
@@ -23,6 +23,10 @@
#include "config.h"
#include "wine/port.h"
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <sys/types.h>
#ifdef HAVE_POLL_H
#include <poll.h>
...
...
dlls/wininet/urlcache.c
View file @
82280618
...
...
@@ -25,15 +25,23 @@
#include "config.h"
#include "wine/port.h"
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#include <time.h>
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
...
...
dlls/wininet/utility.c
View file @
82280618
...
...
@@ -25,6 +25,10 @@
#include "config.h"
#include "wine/port.h"
#if defined(__MINGW32__) || defined (_MSC_VER)
#include <ws2tcpip.h>
#endif
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
...
...
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