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
2014-11-26 13:59:13 -06: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);
};