comparison win/dirent.c @ 1960:22e3e829be13

Win: Switch to using winsock 2.x, this will remove support for ancient versions of Windows like 95 and NT 3.5 and older... This allows us to use unix domain sockets with Windows 10 for the sockpipe() macro... (used in my HandyFTP application) When compiled with Visual Studio 2017 5.5 and newer will use unix domain sockets, however this may fail on older Windows 10 versions and older versions of Windows. I am not sure it is worth the effort to dual mode it, when it can just be compiled with an older compiler and function on older versions of Windows if necessary.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 26 Jul 2019 06:58:41 +0000
parents 3816d76835e9
children
comparison
equal deleted inserted replaced
1959:9ac432c8620c 1960:22e3e829be13
4 #include <stdio.h> 4 #include <stdio.h>
5 #include <stdlib.h> 5 #include <stdlib.h>
6 #include <string.h> 6 #include <string.h>
7 #include <ctype.h> 7 #include <ctype.h>
8 8
9 #include <winsock2.h>
9 #include <windows.h> 10 #include <windows.h>
10 11
11 #define _DW_INTERNAL 12 #define _DW_INTERNAL
12 #include "dwcompat.h" 13 #include "dwcompat.h"
13 #include <errno.h> 14 #include <errno.h>