Files
firestorm/Gameleap/code/mw4/Tools/ImageGrinder/POutOpts.cpp
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

41 lines
894 B
C++

// POutOpts.cpp : implementation file
//
#include "stdafx.h"
#include "imagegrinder.h"
#include "POutOpts.h"
/////////////////////////////////////////////////////////////////////////////
// CPOutOpts dialog
CPOutOpts::CPOutOpts(CWnd* pParent /*=NULL*/)
: CDialog(CPOutOpts::IDD, pParent)
{
//{{AFX_DATA_INIT(CPOutOpts)
m_zcol = 0;
m_zrow = 0;
//}}AFX_DATA_INIT
}
void CPOutOpts::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPOutOpts)
DDX_Text(pDX, IDC_ZONECOL, m_zcol);
DDX_Text(pDX, IDC_ZONEROW, m_zrow);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPOutOpts, CDialog)
//{{AFX_MSG_MAP(CPOutOpts)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPOutOpts message handlers