1
0
mirror of https://github.com/DxWnd/DxWnd.reloaded synced 2024-12-30 09:25:35 +01:00
DxWnd.reloaded/host/TabSysLibs.cpp
gho tik 0d8925151d v2_03_07_src
Former-commit-id: 0546aa60f9848b6f3f8db5f6b0714456b37774f3
2017-03-06 11:40:14 -05:00

56 lines
1.4 KiB
C++

// TabGDI.cpp : implementation file
//
#include "stdafx.h"
#include "TargetDlg.h"
#include "TabSysLibs.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTabLogs dialog
CTabSysLibs::CTabSysLibs(CWnd* pParent /*=NULL*/)
: CDialog(CTabSysLibs::IDD, pParent)
{
//{{AFX_DATA_INIT(CTabSysLibs)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CTabSysLibs::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
CTargetDlg *cTarget = ((CTargetDlg *)(this->GetParent()->GetParent()));
// GDI
DDX_Radio(pDX, IDC_GDINONE, cTarget->m_DCEmulationMode);
DDX_Check(pDX, IDC_FIXTEXTOUT, cTarget->m_FixTextOut);
// OpenGL
DDX_Check(pDX, IDC_FORCEHOOKOPENGL, cTarget->m_ForceHookOpenGL);
DDX_Text(pDX, IDC_OPENGLLIB, cTarget->m_OpenGLLib);
// Glide
DDX_Check(pDX, IDC_HOOKGLIDE, cTarget->m_HookGlide);
// MCI
DDX_Check(pDX, IDC_REMAPMCI, cTarget->m_RemapMCI);
// Kernel32
DDX_Radio(pDX, IDC_SONDEFAULT, cTarget->m_SonProcessMode);
}
BEGIN_MESSAGE_MAP(CTabSysLibs, CDialog)
//{{AFX_MSG_MAP(CTabLogs)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTabLogs message handlers