diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/vmpi/vmpi_services_watch/PatchTimeout.cpp | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/vmpi/vmpi_services_watch/PatchTimeout.cpp')
| -rw-r--r-- | utils/vmpi/vmpi_services_watch/PatchTimeout.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/utils/vmpi/vmpi_services_watch/PatchTimeout.cpp b/utils/vmpi/vmpi_services_watch/PatchTimeout.cpp new file mode 100644 index 0000000..df242d8 --- /dev/null +++ b/utils/vmpi/vmpi_services_watch/PatchTimeout.cpp @@ -0,0 +1,50 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// +// PatchTimeout.cpp : implementation file +// + +#include "stdafx.h" +#include "PatchTimeout.h" + +#ifdef _DEBUG +#define new DEBUG_NEW +#undef THIS_FILE +static char THIS_FILE[] = __FILE__; +#endif + +///////////////////////////////////////////////////////////////////////////// +// CPatchTimeout dialog + + +CPatchTimeout::CPatchTimeout(CWnd* pParent /*=NULL*/) + : CDialog(CPatchTimeout::IDD, pParent) +{ + //{{AFX_DATA_INIT(CPatchTimeout) + //}}AFX_DATA_INIT +} + + +void CPatchTimeout::DoDataExchange(CDataExchange* pDX) +{ + CDialog::DoDataExchange(pDX); + //{{AFX_DATA_MAP(CPatchTimeout) + DDX_Text(pDX, IDC_COMMAND_LINE, m_PatchDirectory); + DDX_Text(pDX, IDC_VMPI_TRANSFER_DIRECTORY, m_VMPITransferDirectory); + DDX_Check(pDX, IDC_FORCE_PATCH, m_bForcePatch); + //}}AFX_DATA_MAP +} + + +BEGIN_MESSAGE_MAP(CPatchTimeout, CDialog) + //{{AFX_MSG_MAP(CPatchTimeout) + // NOTE: the ClassWizard will add message map macros here + //}}AFX_MSG_MAP +END_MESSAGE_MAP() + +///////////////////////////////////////////////////////////////////////////// +// CPatchTimeout message handlers |