📄 wizdata.h
字号:
///////////////////////////////////////////////////////////////////
// Module : WIZDATA.H
//
// Purpose : Definition of an application-specific data structure
// used for the WIZARD1 program.
//
// Author : Rob McGregor, rob_mcgregor@compuserve.com
//
// Date : 05-25-96
///////////////////////////////////////////////////////////////////
#ifndef __WIZDATA_H__
#define __WIZDATA_H__
// Sample data structure for holding wizard info
typedef struct tagSAMPLEWIZDATA
{
CString sFirstName;
CString sLastName;
CString sCompany;
CString sEmail;
CString sFood;
CString sCompiler;
}
SAMPLEWIZDATA;
#endif // __WIZDATA_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -