www.pudn.com > warsrc.rar > DaemonDlgThread.h
// DaemonDlgThread.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CDaemonDlgThread thread
class CDaemonDlgThread : public CWinThread
{
DECLARE_DYNCREATE(CDaemonDlgThread)
protected:
CDaemonDlgThread(); // protected constructor used by dynamic creation
// Attributes
public:
// Operations
public:
CRemoteInterface *m_pRI;
DWORD m_Flags;
CWarClientAPI *m_pAPI;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDaemonDlgThread)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CDaemonDlgThread();
// Generated message map functions
//{{AFX_MSG(CDaemonDlgThread)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#define DDT_SHOW_NTSERVICE 0x0001
/////////////////////////////////////////////////////////////////////////////