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:
Robert Dickenson 2002-11-28 12:21:02 +00:00
parent ac08a1048a
commit 630e12009d

View file

@ -5,7 +5,7 @@
*/
#ifndef __SOCKET_H
#define __SOCKET_H
#include <crtdll/stdio.h>
#include <msvcrt/stdio.h>
#include <windows.h>
#include <winsock2.h>
#include <thread.h>