writethread.cpp
来自「UHF RFID Reader Program」· C++ 代码 · 共 38 行
CPP
38 行
// ../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 + =
减小字号Ctrl + -
显示快捷键?