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.
36 lines
829 B
36 lines
829 B
/************************************************************************
|
|
* *
|
|
* FILEHIST.H *
|
|
* *
|
|
* Copyright (C) Microsoft Corporation 1995 *
|
|
* All Rights reserved. *
|
|
* *
|
|
************************************************************************/
|
|
|
|
#ifndef __CFILE_HISTORY__
|
|
#define __CFILE_HISTORY__
|
|
|
|
#ifndef _CTABLE_INCLUDED
|
|
#include "..\common\ctable.h"
|
|
#endif
|
|
|
|
class CFileHistory
|
|
{
|
|
public:
|
|
CFileHistory(int fsType, UINT cMaxHistoryFiles = 9);
|
|
~CFileHistory();
|
|
|
|
void STDCALL FillComboBox(CComboBox* pcombo);
|
|
void STDCALL Add(PCSTR pszFileName);
|
|
void STDCALL Add(PCSTR pszFileName1, PCSTR pszFileName2);
|
|
void STDCALL AddData(PCSTR pszData);
|
|
|
|
CTable ctbl;
|
|
|
|
protected:
|
|
CStr* pszSection;
|
|
BOOL fModified;
|
|
int cMaxFiles;
|
|
};
|
|
|
|
#endif
|