This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ContactBook/History.h
2024-03-20 09:28:18 -05:00

16 lines
344 B
C++

// history.h : interface of the CHistoryList class
//
/////////////////////////////////////////////////////////////////////////////
class CHistoryList : public CStringList
{
// Operations
public:
void FillCombobox();
BOOL AddString(CString &s1);
// Implementation
protected:
void SwapStrings(CWnd* pWnd, CString &s1);
};