zh.cpp

来自「手机拆机资料/免拆资料相互转换。方便免拆操作」· C++ 代码 · 共 41 行

CPP
41
字号
// zh.cpp: implementation of the Czh class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "手机维修工具软件集.h"
#include "zh.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Czh::Czh()
{

}

Czh::~Czh()
{

}
UINT Czh::ZhThread(LPVOID pParam)//工作线程
{
	//AfxMessageBox("线程工作结束!");
	//发送进度条为0的消息
	PostMessage(AfxGetMainWnd()->m_hWnd, WM_PRO_MSG, (WPARAM)0, 0);	
	return 1;
}

void Czh::run()
{
	AfxBeginThread(ZhThread,this)!=NULL;//启动线程
	//AfxMessageBox("该操作为BIN文件转SRE文件!");
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?