📄 saverestore.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -