Subversion Repositories Tewi

Rev

Rev 318 | Rev 349 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 318 Rev 347
Line 1... Line 1...
1
/* $Id: config.c 318 2024-10-14 12:25:36Z nishi $ */
1
/* $Id: config.c 347 2024-10-15 16:33:28Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "../config.h"
5
#include "../config.h"
6
 
6
 
Line 12... Line 12...
12
 
12
 
13
#if !defined(_MSC_VER) && !defined(__BORLANDC__)
13
#if !defined(_MSC_VER) && !defined(__BORLANDC__)
14
#include <unistd.h>
14
#include <unistd.h>
15
#endif
15
#endif
16
 
16
 
17
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || (defined(__WATCOMC__) && !defined(__OS2__) && !defined(__WATCOMC__))
17
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || (defined(__WATCOMC__) && !defined(__OS2__) && !defined(__NETWARE__))
18
#ifdef USE_WINSOCK1
18
#ifdef USE_WINSOCK1
19
#include <winsock.h>
19
#include <winsock.h>
20
#else
20
#else
21
#include <winsock2.h>
21
#include <winsock2.h>
22
#endif
22
#endif
Line 29... Line 29...
29
#include <types.h>
29
#include <types.h>
30
#include <netinet/in.h>
30
#include <netinet/in.h>
31
#include <tcpustd.h>
31
#include <tcpustd.h>
32
#endif
32
#endif
33
 
33
 
-
 
34
#ifdef __NETWARE__
-
 
35
#include <arpa/inet.h>
-
 
36
#endif
34
#include "tw_config.h"
37
#include "tw_config.h"
35
#include "tw_module.h"
38
#include "tw_module.h"
36
 
39
 
37
struct tw_config config;
40
struct tw_config config;
38
 
41