DlgSettings.cpp
上传用户:tianheyiqi
上传日期:2010-04-16
资源大小:282k
文件大小:1k
源码类别:

外挂编程

开发平台:

Visual C++

  1. // DlgSettings.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "roa.h"
  5. #include "DlgSettings.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgSettings
  13. IMPLEMENT_DYNAMIC(CDlgSettings, CPropertySheet)
  14. CDlgSettings::CDlgSettings(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  15. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  16. {
  17. }
  18. CDlgSettings::CDlgSettings(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  19. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  20. {
  21. }
  22. CDlgSettings::~CDlgSettings()
  23. {
  24. }
  25. BEGIN_MESSAGE_MAP(CDlgSettings, CPropertySheet)
  26. //{{AFX_MSG_MAP(CDlgSettings)
  27. // NOTE - the ClassWizard will add and remove mapping macros here.
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CDlgSettings message handlers