⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.h

📁 linux下的ntp协议客户端; ntp:网络时间协议
💻 H
字号:
/* config.h for Windows NT */#ifndef __config#define __config#if defined(_MSC_VER)/* * An attempt to cut down the number of warnings generated during compilation. * All of these should be benign to disable. */#pragma warning(disable: 4100) /* unreferenced formal parameter */#pragma warning(disable: 4101) /* unreferenced local variable */#pragma warning(disable : 4127)#endif/* * Windows NT Configuration Values */#if defined _DEBUG /* Use VC standard macro definitions */# define DEBUG 1#endif#if !defined _WIN32_WINNT || _WIN32_WINNT < 0x0400# error Please define _WIN32_WINNT in the project settings/makefile#endif/* * ANSI C compliance enabled */#define __STDC__ 1/* Define if you have the ANSI C header files.  */#define STDC_HEADERS 1/* Skip asynch rpc inclusion */#ifndef __RPCASYNC_H__#define __RPCASYNC_H__#endif/* Prevent inclusion of winsock.h in windows.h */#ifndef _WINSOCKAPI_#define _WINSOCKAPI_  #endif# undef  OPEN_BCAST_SOCKET		/* for	ntp_io.c */ 													# undef  UDP_WILDCARD_DELIVERY	/* for	ntp_io.c */ 				/*	98/06/01  */# define HAVE_RANDOM #define MAXHOSTNAMELEN 64#define AUTOKEY/* Enable OpenSSL */#define OPENSSL 1#define finite _finite# define random      rand# define srandom     srandint NT_set_process_priority(void);	/* Define this function */# define MCAST				/* Enable Multicast Support */												# define REFCLOCK				/* from ntpd.mak */# define CLOCK_LOCAL			/* from ntpd.mak *///# define CLOCK_PARSE /* # define CLOCK_ATOM *//* # define CLOCK_SHM	*/		 /* from ntpd.mak */# define CLOCK_HOPF_SERIAL	/* device 38, hopf DCF77/GPS serial line receiver  */# define CLOCK_HOPF_PCI		/* device 39, hopf DCF77/GPS PCI-Bus receiver  */# define CLOCK_NMEA# define CLOCK_PALISADE		 /* from ntpd.mak */# define CLOCK_DUMBCLOCK# define CLOCK_TRIMBLEDC# define CLOCK_TRIMTSIP 1# define CLOCK_JUPITER# define NTP_LITTLE_ENDIAN		/* from libntp.mak */# define NTP_POSIX_SOURCE# define SYSLOG_FILE			/* from libntp.mak */# define SYSV_TIMEOFDAY 		/* for ntp_unixtime.h */# define SIZEOF_SIGNED_CHAR 1# define SIZEOF_INT 4			/* for ntp_types.h *///# define HAVE_NET_IF_H# define QSORT_USES_VOID_P# define HAVE_SETVBUF# define HAVE_VSPRINTF# define HAVE_SNPRINTF# define HAVE_VSNPRINTF# define HAVE_PROTOTYPES		/* from ntpq.mak */# define HAVE_MEMMOVE# define HAVE_TERMIOS_H# define HAVE_ERRNO_H# define HAVE_STDARG_H# define HAVE_NO_NICE# define TIME_WITH_SYS_TIME# define HAVE_IO_COMPLETION_PORT# define HAVE_SOCKADDR_IN6# define ISC_PLATFORM_NEEDNTOP# define NEED_S_CHAR_TYPEDEF# define USE_PROTOTYPES 		/* for ntp_types.h */														#define ULONG_CONST(a) a ## UL# define NOKMEM# define RETSIGTYPE void# ifndef STR_SYSTEM#  define STR_SYSTEM "WINDOWS/NT"# endif#define  SIOCGIFFLAGS SIO_GET_INTERFACE_LIST /* used in ntp_io.c *//* Include Windows headers */#include <windows.h>#endif /* __config */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -