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

📄 stdafx.h

📁 代码为windows下的无线猫的应用程序(对AT指令的操作)。
💻 H
字号:
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#if !defined(AFX_STDAFX_H__47480C0C_49F8_47C1_AF9A_E04397F8F08F__INCLUDED_)
#define AFX_STDAFX_H__47480C0C_49F8_47C1_AF9A_E04397F8F08F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers

#define AI_DEVOK			0x0001	// 设备连接正常

#define AI_IRR				0x0010	// 无关紧要的信息

#define AI_RING				0x0100	// 有电话呼入

#define AI_DIALUP			0x0200	// 有电话呼出
#define AI_CONNECT 			0x0201  // 电话接通(DATA )
#define AI_DIALOK			0x0202  // 电话接通(VOICE)
#define AI_NOANSWER			0x0203  // 电话没有应答
#define AI_BUSY				0x0204  // 电话忙
#define AI_NOCARRIER		0x0205  // 对方挂机

#define AI_RECSM			0x0300	// 收到新的短信
#define AI_READSIGNSMS		0x0301	// 读取单条短信
#define AI_READSMSLIST		0x0302	// 读取短信列表
#define AI_SMSSENDED		0x0303	// 短信发送成功

#define DE_COMNUM			6		// 搜索串口数量

#define PERF_ConnectSpeed	0
#define PERF_BytesRecvd		1
#define PERF_BytesXmit		2
#define PERF_ARRAY			3

enum    {ENCRYPT,DECRYPT};

#include <math.h>
#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
#include <afxdisp.h>        // MFC Automation classes
#include <afxdtctl.h>		// MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>			// MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <afxtempl.h>		// declare CArray CLASS

extern void GetAppDir(CString& strAppDir);
void AutoSizeColumns(CListCtrl *pListCtrl);
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STDAFX_H__47480C0C_49F8_47C1_AF9A_E04397F8F08F__INCLUDED_)

⌨️ 快捷键说明

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