📄 writethread.cpp
字号:
// ../WriteThread.cpp : implementation file
//
#include "stdafx.h"
#include "RFRM.h"
#include "WriteThread.h"
// CWriteThread
IMPLEMENT_DYNCREATE(CWriteThread, CWinThread)
CWriteThread::CWriteThread()
{
}
CWriteThread::~CWriteThread()
{
}
BOOL CWriteThread::InitInstance()
{
// TODO: perform and per-thread initialization here
return TRUE;
}
int CWriteThread::ExitInstance()
{
// TODO: perform any per-thread cleanup here
return CWinThread::ExitInstance();
}
BEGIN_MESSAGE_MAP(CWriteThread, CWinThread)
END_MESSAGE_MAP()
// CWriteThread message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -