You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
818 B
31 lines
818 B
#ifndef _LogonWait_
|
|
#define _LogonWait_
|
|
|
|
#include "ExternalProcess.h"
|
|
#include "KernelResources.h"
|
|
|
|
class ILogonExternalProcess : public IExternalProcess
|
|
{
|
|
public:
|
|
virtual NTSTATUS LogonRestart (void) = 0;
|
|
};
|
|
|
|
class CLogonWait
|
|
{
|
|
public:
|
|
CLogonWait (void);
|
|
virtual ~CLogonWait (void);
|
|
|
|
NTSTATUS Cancel (void);
|
|
NTSTATUS Register (HANDLE hObject, ILogonExternalProcess *pLogonExternalProcess);
|
|
private:
|
|
void ObjectSignaled (void);
|
|
static void CALLBACK CB_ObjectSignaled (void *pV, BOOLEAN fTimedOut);
|
|
private:
|
|
HANDLE _hWait;
|
|
CEvent _event;
|
|
ILogonExternalProcess *_pLogonExternalProcess;
|
|
};
|
|
|
|
#endif /* _LogonWait_ */
|
|
|