mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 12:28:49 +08:00
9697f95b8f
This reverts commit 15d999759e
.
25 lines
375 B
C++
25 lines
375 B
C++
#pragma once
|
|
class CAddBOM : public acl::thread
|
|
{
|
|
public:
|
|
CAddBOM(void);
|
|
~CAddBOM(void);
|
|
|
|
void Init(HWND hWnd, CString &sPath);
|
|
void OnAdding(int nMsg);
|
|
void OnAdded(int nMsg);
|
|
|
|
protected:
|
|
// @override
|
|
void *run(void);
|
|
|
|
private:
|
|
HWND m_hWnd;
|
|
CString m_sPath;
|
|
int m_nMsgAdding;
|
|
int m_nMsgAdded;
|
|
|
|
void ScanAdd(void);
|
|
bool AddBOM(const acl::string& filePath);
|
|
};
|