CB32 1.2 sources

This commit is contained in:
troyengel 2014-11-26 13:59:13 -06:00
parent cf25bc7627
commit fd87f89a19
100 changed files with 14543 additions and 0 deletions

16
History.h Normal file
View file

@ -0,0 +1,16 @@
// 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);
};