mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 04:17:52 +08:00
21 lines
345 B
C++
21 lines
345 B
C++
#pragma once
|
|
#include <atlbase.h>
|
|
|
|
class AFX_EXT_CLASS CRegRun
|
|
{
|
|
public:
|
|
CRegRun(void);
|
|
CRegRun(const char *procname);
|
|
~CRegRun(void);
|
|
void Init(const char *procname);
|
|
|
|
BOOL AutoRun(BOOL bAutoRun, const char *procname);
|
|
BOOL IfAutoRun(void);
|
|
|
|
public:
|
|
CString m_sErrMsg;
|
|
int m_nErrno;
|
|
private:
|
|
CString m_sRegName;
|
|
};
|