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

58
SetPage.h Normal file
View file

@ -0,0 +1,58 @@
// SetPage.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSetPage dialog
class CSetPage : public CPropertyPage
{
DECLARE_DYNCREATE(CSetPage)
// Construction
public:
CSetPage();
~CSetPage();
// Dialog Data
//{{AFX_DATA(CSetPage)
enum { IDD = IDD_SETPAGE };
CSpinButtonCtrl m_spinsetmru;
BOOL m_setlastfile;
BOOL m_setsort;
BOOL m_setcol;
BOOL m_setexp;
BOOL m_setimp;
BOOL m_setwin;
int m_setmru;
CString m_setcity;
CString m_setcountry;
CString m_setemail;
CString m_setstate;
CString m_setweb;
CString m_setzip;
BOOL m_setusemru;
CString m_setprefix;
BOOL m_settray;
CString m_setcomp;
BOOL m_setpos;
BOOL m_setstart;
BOOL m_setdelete;
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CSetPage)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSetPage)
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};