mirror of https://github.com/tongzx/nt5src
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.
30 lines
645 B
30 lines
645 B
// ApprovalDialog.cpp: implementation of the CApprovalDialog class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// This class is temporary until the remote control completed stuff
|
|
// is fixed for Salem
|
|
|
|
#include "stdafx.h"
|
|
#include "ApprovalDialog.h"
|
|
|
|
#include "RemoteDesktopClientSession.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CApprovalDialog::CApprovalDialog()
|
|
{
|
|
|
|
}
|
|
|
|
CApprovalDialog::~CApprovalDialog()
|
|
{
|
|
|
|
}
|
|
|
|
VOID CApprovalDialog::OnOk()
|
|
{
|
|
m_rObj->ShowRemdeskControl();
|
|
}
|