saverestore.h

来自「The PCI Local bus concept was developed 」· C头文件 代码 · 共 40 行

H
40
字号
// SaveRestore.h : header file
//

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

/////////////////////////////////////////////////////////////////////////////
// CSaveRestore dialog

class CSaveRestore : public CDialog
{
// Construction
public:
	CSaveRestore(void);			// Constructor
	virtual ~CSaveRestore();	// Destructor

	bool WIN_GetBrowseFileName(char *szFileName, int id, int func );

	// So you can plop the file name in here
	char szFileName[256];

// Implementation
protected:

private:

	void WIN_popFileInitializeHEX( void );
	void WIN_popFileInitializeBIN( void );
//	bool WIN_Load_INI_File(bool browse_flag, char *section, char *heading, char *datastr, int max_char);
//	bool WIN_Save_INI_File(bool browse_flag, char *section, char *heading, char *datastr);
//	bool WIN_GetBrowseFileName(char *szFileName, int id, int func );
	bool WIN_PopFileOpenDlg(PSTR pstrFileName);
	bool WIN_PopFileSaveDlg(PSTR pstrFileName);
//	bool WIN_LoadIniFile( char *section, char *heading, char *datastr, int max_char );
//	bool WIN_SaveIniData( char *section, char *heading, char *datastr );

};

⌨️ 快捷键说明

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