mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Thank-you to Eugene for pointing out that I missed a required change
I:\Dev\reactos\reactos\apps\utils\net\roshttpd\include\socket.h 8 : #include <crtdll/stdio.h> Fixed to now include <msvcrt/....> instead which is now common to both the ntdll and msvcrt dll's svn path=/trunk/; revision=3804
This commit is contained in:
parent
ac08a1048a
commit
630e12009d
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
*/
|
*/
|
||||||
#ifndef __SOCKET_H
|
#ifndef __SOCKET_H
|
||||||
#define __SOCKET_H
|
#define __SOCKET_H
|
||||||
#include <crtdll/stdio.h>
|
#include <msvcrt/stdio.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <winsock2.h>
|
#include <winsock2.h>
|
||||||
#include <thread.h>
|
#include <thread.h>
|
||||||
|
|
Loading…
Reference in a new issue