otherdropdialogthread.cpp
来自「接口封装 封装 我的 电动 的哦 得得」· C++ 代码 · 共 52 行
CPP
52 行
// OtherDropDialogThread.cpp: Implementierungsdatei
//
#include "stdafx.h"
#include "Interface.h"
#include "OtherDropDialogThread.h"
#include "OtherDropDialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COtherDropDialogThread
IMPLEMENT_DYNCREATE(COtherDropDialogThread, CWinThread)
COtherDropDialogThread::COtherDropDialogThread()
{
}
COtherDropDialogThread::~COtherDropDialogThread()
{
}
BOOL COtherDropDialogThread::InitInstance()
{
COtherDropDialog dlg;
m_pMainWnd = &dlg;
dlg.DoModal();
// returning false will make MFC doing the cleanup for us :)
return FALSE;
}
int COtherDropDialogThread::ExitInstance()
{
// ZU ERLEDIGEN: Bereinigungen f黵 jeden Thread hier durchf黨ren
return CWinThread::ExitInstance();
}
BEGIN_MESSAGE_MAP(COtherDropDialogThread, CWinThread)
//{{AFX_MSG_MAP(COtherDropDialogThread)
// HINWEIS - Der Klassen-Assistent f黦t hier Zuordnungsmakros ein und entfernt diese.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Behandlungsroutinen f黵 Nachrichten COtherDropDialogThread
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?