mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
427 B
24 lines
427 B
// winsfile.h : header file
|
|
//
|
|
|
|
#define LENGTH(x) (sizeof(x)/sizeof(x[0])) // Return the number of elements in an array
|
|
|
|
class CWinsBackupDlg
|
|
{
|
|
public:
|
|
OPENFILENAME m_ofn;
|
|
TCHAR m_szFullPath[MAX_PATH];
|
|
TCHAR m_szFile[MAX_PATH];
|
|
TCHAR m_szTitle[128];
|
|
BOOL m_fIncremental;
|
|
|
|
public:
|
|
CWinsBackupDlg(
|
|
BOOL fBackup,
|
|
int idsTitle,
|
|
CWnd * pParent,
|
|
BOOL fIncremental = FALSE);
|
|
|
|
int DoModal();
|
|
|
|
}; // CWinsBackupDlg
|