Alexandre Julliard : secur32/tests: Include winsock2.h before other headers.
Module: wine Branch: master Commit: d0d6dcb70eb90462301e520a8969291fa3a5b1de URL: http://source.winehq.org/git/wine.git/?a=commit;h=d0d6dcb70eb90462301e520a89... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Thu Jul 24 19:51:52 2014 +0200 secur32/tests: Include winsock2.h before other headers. --- dlls/secur32/tests/schannel.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c index 078aec7..2b68c3d 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -17,15 +17,14 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include <stdio.h> + #include <stdarg.h> #include <windef.h> -#include <winbase.h> +#include <winsock2.h> +#include <ws2tcpip.h> #define SECURITY_WIN32 #include <security.h> #include <schannel.h> -#include <winsock2.h> -#include <ws2tcpip.h> #include "wine/test.h"
participants (1)
-
Alexandre Julliard