struct.h

来自「本文件包包含了大量用VC++开发的应用程序界面」· C头文件 代码 · 共 33 行

H
33
字号
//
//	Struct.h -- structures and declarations for windows
//	commander.
//

#ifndef		__STRUCT_H__
#define		__STRUCT_H__

typedef struct _ITEMINFO
	{
	int			nIcon;
	CString		strFileType;
	WIN32_FIND_DATA	fdFile;
	} ITEMINFO, *PITEMINFO;

struct LISTHEADER
{
	char	*Title;
	int		Width;
	UINT	Format;
};

struct CONFIG
{
	CRect	rcListPane;
	CRect	rcTreePane;
	int		cmdShow;
	CRect	rcWindow;
	CString	strDirectory;
	bool	bModified;
};

#endif		//	__STRUCT_H__

⌨️ 快捷键说明

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