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

📄 tpropertiesgeneral.h

📁 mpq文件的格式就是一种压缩格式
💻 H
字号:
/*****************************************************************************/
/* TPropertiesGeneral.h                   Copyright (c) Ladislav Zezula 2003 */
/*---------------------------------------------------------------------------*/
/* Description :                                                             */
/*---------------------------------------------------------------------------*/
/*   Date    Ver   Who  Comment                                              */
/* --------  ----  ---  -------                                              */
/* 09.04.03  1.00  Lad  The first version of TPropertiesGeneral.h            */
/*****************************************************************************/

#ifndef __TPROPERTIESGENERAL_H__
#define __TPROPERTIESGENERAL_H__

//-----------------------------------------------------------------------------
// TPropertiesGeneral dialog

class TPropertiesGeneral : public CPropertyPage
{
	DECLARE_DYNCREATE(TPropertiesGeneral)

    // Construction
    public:
	TPropertiesGeneral();
	~TPropertiesGeneral();

    void SetInfo(const char * szMpqName, const char * szFileName, HANDLE hMpq, HANDLE hFile);

	//{{AFX_DATA(TPropertiesGeneral)
	enum { IDD = IDD_PROPERTIES_GENERAL };
	//}}AFX_DATA

    const char * m_szMpqName;
    const char * m_szFileName;
    HANDLE m_hMpq;                      // MPQ handle
    HANDLE m_hFile;                     // File handle
    LCID   m_lcLocale;                  // Locale for the file (only if m_bChanged == TRUE)
    BOOL   m_bChanged;                  // TRUE if settings changed

	//{{AFX_VIRTUAL(TPropertiesGeneral)
	//}}AFX_VIRTUAL

    protected:
	//{{AFX_MSG(TPropertiesGeneral)
	virtual BOOL OnInitDialog();
	afx_msg void OnLanguageChange();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#endif // __TPROPERTIESGENERAL_H__

⌨️ 快捷键说明

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