mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
Registry Explorer (console tool) by Nedko Arnaoudov added to the system utilities subtree.
Also here: http://www.geocities.com/registryexplorer/ svn path=/trunk/; revision=1375
This commit is contained in:
parent
f3632d15b8
commit
ae69a8e1e4
53 changed files with 7055 additions and 2 deletions
25
rosapps/sysutils/regexpl/TextHistory.h
Normal file
25
rosapps/sysutils/regexpl/TextHistory.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
// TextHistory.h: interface for the CTextHistory class.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#if !defined(TEXTHISTORY_H__AD9C6555_1D97_11D4_9F58_204C4F4F5020__INCLUDED_)
|
||||
#define TEXTHISTORY_H__AD9C6555_1D97_11D4_9F58_204C4F4F5020__INCLUDED_
|
||||
|
||||
class CTextHistory
|
||||
{
|
||||
public:
|
||||
CTextHistory();
|
||||
virtual ~CTextHistory();
|
||||
BOOL Init(DWORD dwMaxHistoryLineSize, DWORD dwMaxHistoryLines);
|
||||
const TCHAR * GetHistoryLine(DWORD dwIndex);
|
||||
void AddHistoryLine(const TCHAR *pchLine);
|
||||
private:
|
||||
TCHAR *m_pHistoryBuffer;
|
||||
DWORD m_dwMaxHistoryLines;
|
||||
DWORD m_dwMaxHistoryLineSize;
|
||||
DWORD m_dwFirstHistoryIndex;
|
||||
DWORD m_dwLastHistoryIndex;
|
||||
DWORD m_dwHisoryFull;
|
||||
};
|
||||
|
||||
#endif // !defined(TEXTHISTORY_H__AD9C6555_1D97_11D4_9F58_204C4F4F5020__INCLUDED_)
|
Loading…
Add table
Add a link
Reference in a new issue