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

📄 includes.h

📁 嵌入式系统用的一个源码,能够自己进行系统升级.
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -