includes.h
来自「嵌入式系统用的一个源码,能够自己进行系统升级.」· C头文件 代码 · 共 40 行
H
40 行
#define COM_MODE 1 //0:GRPS;1:Intranet
#define CONFIG_FILE_NAME "..\\config.ini"
#define UPDATE_FILE_NAME "..\\update.ini"
#define START_RUN_EXE "..\\user.bat"
#include <stdio.h>
#include <share.h>
#include <alloc.h>
#include <mem.h>
#include <io.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <conio.h>
#include <dos.h>
#include <setjmp.h>
#include <math.h>
#include <bios.h>
#include <time.h>
#include <iostream.h>
#include <sys\types.h>
#include "..\wsnetd\netbox.h"
#include "..\wsnetd\readini.h"
#if COM_MODE==0
#include "..\wsnetd\etr_ppp.h"
#include "..\wsnetd\gprs_sms.h"
#include "..\wsnetd\gprs.h"
#define GPRSBufLen 2560
extern char far *GPRSBufString;
#define RUN_EXE_NAME "WSGPRS"
#endif
#if COM_MODE==1
#include "..\wsnetd\etr_tcp.h"
#include "..\wsnetd\intranet.h"
#define RUN_EXE_NAME "WSTRANT"
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?