mirror of https://github.com/tongzx/nt5src
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.
44 lines
1.1 KiB
44 lines
1.1 KiB
// Gemplus (C) 1999
|
|
// Version 1.0
|
|
// Author: Sergey Ivanov
|
|
// Date of creation - 18.05.1999
|
|
// Change log:
|
|
//
|
|
#ifndef EV_INT
|
|
#define EV_INT
|
|
#include "generic.h"
|
|
|
|
#pragma PAGEDCODE
|
|
class CEvent
|
|
{
|
|
public:
|
|
NTSTATUS m_Status;
|
|
SAFE_DESTRUCTORS();
|
|
virtual VOID dispose(){self_delete();};
|
|
protected:
|
|
CEvent(){};
|
|
virtual ~CEvent(){};
|
|
public:
|
|
|
|
virtual VOID initialize(IN PRKEVENT Event,IN EVENT_TYPE Type,IN BOOLEAN State) {};
|
|
virtual VOID clear(PRKEVENT Event) {};
|
|
virtual LONG reset(PRKEVENT Event) {return 0;};
|
|
virtual LONG set(PRKEVENT Event,IN KPRIORITY Increment,IN BOOLEAN Wait) {return 0;};
|
|
|
|
virtual NTSTATUS waitForSingleObject (PVOID Object,
|
|
KWAIT_REASON WaitReason,KPROCESSOR_MODE WaitMode,
|
|
BOOLEAN Alertable,
|
|
PLARGE_INTEGER Timeout) {return STATUS_SUCCESS;};
|
|
|
|
virtual NTSTATUS waitForMultipleObjects(ULONG Count,
|
|
PVOID Object[],
|
|
WAIT_TYPE WaitType,
|
|
KWAIT_REASON WaitReason,
|
|
KPROCESSOR_MODE WaitMode,
|
|
BOOLEAN Alertable,
|
|
PLARGE_INTEGER Timeout,
|
|
PKWAIT_BLOCK WaitBlockArray) {return STATUS_SUCCESS;};
|
|
|
|
};
|
|
|
|
#endif//EVENT
|