* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / base / applications / network / ftp / precomp.h
1 #ifndef _FTP_H
2 #define _FTP_H
3
4 #include <sys/stat.h>
5
6 #ifndef _WIN32
7 #include <sys/param.h>
8 #include <sys/socket.h>
9 #include <sys/time.h>
10 #include <sys/file.h>
11 #include <sys/ioctl.h>
12 #include <netinet/in.h>
13 #include <arpa/ftp.h>
14 #include <arpa/telnet.h>
15 #include <pwd.h>
16 #include <varargs.h>
17 #include <netdb.h>
18 #else
19 #define WIN32_NO_STATUS
20 #include <stdarg.h>
21 #include <windef.h>
22 #include <winbase.h>
23 #include <wingdi.h>
24 #define _INC_WINDOWS
25 #include <winsock.h>
26 #endif
27
28 #include <io.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31
32 #include "ftp_var.h"
33
34 #endif /* _FTP_H */