Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

79 lines
2.0 KiB

// OutboxDetailsPg.cpp : implementation file
//
#include "stdafx.h"
#define __FILE_ID__ 53
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
// this array maps CViewRow items to
// dialog control IDs
//
static TMsgPageInfo s_PageInfo[] =
{
MSG_VIEW_ITEM_USER, IDC_USER_VALUE,
MSG_VIEW_ITEM_PRIORITY, IDC_PRIORITY_VALUE,
MSG_VIEW_ITEM_CSID, IDC_CSID_VALUE,
MSG_VIEW_ITEM_TSID, IDC_TSID_VALUE,
MSG_VIEW_ITEM_DEVICE, IDC_DEVICE_VALUE,
MSG_VIEW_ITEM_RETRIES, IDC_RETRIES_VALUE,
MSG_VIEW_ITEM_ID, IDC_JOB_ID_VALUE,
MSG_VIEW_ITEM_BROADCAST_ID, IDC_BROADCAST_ID_VALUE,
MSG_VIEW_ITEM_SUBMIT_TIME, IDC_SUBMISSION_TIME_VALUE,
MSG_VIEW_ITEM_BILLING, IDC_BILLING_CODE_VALUE,
MSG_VIEW_ITEM_SERVER, IDC_SERVER_VALUE
};
/////////////////////////////////////////////////////////////////////////////
// COutboxDetailsPg property page
IMPLEMENT_DYNCREATE(COutboxDetailsPg, CMsgPropertyPg)
COutboxDetailsPg::COutboxDetailsPg(
CFaxMsg* pMsg // pointer to CJob
) :
CMsgPropertyPg(COutboxDetailsPg::IDD, pMsg)
{
}
COutboxDetailsPg::~COutboxDetailsPg()
{
}
void COutboxDetailsPg::DoDataExchange(CDataExchange* pDX)
{
CMsgPropertyPg::DoDataExchange(pDX);
//{{AFX_DATA_MAP(COutboxDetailsPg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(COutboxDetailsPg, CMsgPropertyPg)
//{{AFX_MSG_MAP(COutboxDetailsPg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COutboxDetailsPg message handlers
BOOL
COutboxDetailsPg::OnInitDialog()
{
DBG_ENTER(TEXT("COutboxDetailsPg::OnInitDialog"));
CMsgPropertyPg::OnInitDialog();
Refresh(s_PageInfo, sizeof(s_PageInfo)/sizeof(s_PageInfo[0]));
return TRUE;
}