📄 stdafx.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__9B594757_70E3_41D1_8728_6787B3DE6984__INCLUDED_)
#define AFX_STDAFX_H__9B594757_70E3_41D1_8728_6787B3DE6984__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#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
#define WM_DISPDATA WM_USER+6004
#include <afxtempl.h>
typedef struct SSQDATA
{
CString strNo;
UINT iRed[6];
UINT iCountValue;
UINT iBlue;
} SSQDATA;
typedef CArray<SSQDATA,SSQDATA&> SSQARRAY;
//用于专门进行查询和画图的数据结构
typedef struct QUERYSTATE
{
CString strstartNo; //起始期号
CString strendNo; //结束期号
bool bRCount; //红码和值区域
CString strRCount;
bool bhanRed;
CString strred; //包含红码的字符串
bool bminred; //最小红码
UINT uminRed;
bool bmaxred; //最大红码
UINT umaxRed;
bool bblue; //蓝码
UINT ublue;
bool b0; //0路
UINT ub0;
bool b1; //1路
UINT ub1;
bool b2; //2路
UINT ub2;
} QUERYSTATE;
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STDAFX_H__9B594757_70E3_41D1_8728_6787B3DE6984__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -