JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
EventHandler Class Reference

#include <WinTools.h>

Public Member Functions

 EventHandler (void)
 
 EventHandler (BOOL manual, BOOL initial=FALSE, LPCTSTR hname=NULL, LPSECURITY_ATTRIBUTES sec=NULL)
 
virtual ~EventHandler (void)
 
HANDLE create (BOOL manual=TRUE, BOOL initial=FALSE, LPCTSTR hname=NULL, LPSECURITY_ATTRIBUTES sec=NULL)
 
void clear (void)
 
BOOL set (void)
 
BOOL wait (DWORD msec=INFINITE)
 
BOOL wait (HANDLE handle, DWORD msec=INFINITE)
 

Public Attributes

HANDLE m_handle
 
DWORD m_wait_err
 

Detailed Description

Definition at line 185 of file WinTools.h.

Constructor & Destructor Documentation

◆ EventHandler() [1/2]

EventHandler ( void )

Definition at line 841 of file WinTools.cpp.

842{
843 m_handle = NULL;
844 m_wait_err = 0;
845}

References EventHandler::m_handle, and EventHandler::m_wait_err.

◆ EventHandler() [2/2]

EventHandler ( BOOL manual,
BOOL initial = FALSE,
LPCTSTR hname = NULL,
LPSECURITY_ATTRIBUTES sec = NULL )

Definition at line 848 of file WinTools.cpp.

849{
850 m_handle = NULL;
851 m_wait_err = 0;
852 create(manual, initial, hname, sec);
853}
HANDLE create(BOOL manual=TRUE, BOOL initial=FALSE, LPCTSTR hname=NULL, LPSECURITY_ATTRIBUTES sec=NULL)
Definition WinTools.cpp:868

References EventHandler::create(), EventHandler::m_handle, and EventHandler::m_wait_err.

Here is the call graph for this function:

◆ ~EventHandler()

virtual ~EventHandler ( void )
inlinevirtual

Definition at line 191 of file WinTools.h.

191{ clear();}

References EventHandler::clear().

Here is the call graph for this function:

Member Function Documentation

◆ clear()

void clear ( void )

Definition at line 856 of file WinTools.cpp.

857{
858 if (m_handle!=NULL) {
859 CloseHandle(m_handle);
860 m_handle = NULL;
861 }
862 m_wait_err = 0;
863
864 return;
865}

References EventHandler::m_handle, and EventHandler::m_wait_err.

Referenced by EventHandler::~EventHandler().

Here is the caller graph for this function:

◆ create()

HANDLE create ( BOOL manual = TRUE,
BOOL initial = FALSE,
LPCTSTR hname = NULL,
LPSECURITY_ATTRIBUTES sec = NULL )

Definition at line 868 of file WinTools.cpp.

869{
870 if (m_handle!=NULL) return NULL;
871
872 m_handle = CreateEvent(secu, manual, initial, hname);
873 return m_handle;
874}

References EventHandler::m_handle.

Referenced by EventHandler::EventHandler().

Here is the caller graph for this function:

◆ set()

BOOL set ( void )
inline

Definition at line 200 of file WinTools.h.

200{ return SetEvent(m_handle);}

References EventHandler::m_handle.

◆ wait() [1/2]

BOOL wait ( DWORD msec = INFINITE)

BOOL EventHandler::wait(DWORD msec=INFINITE)

m_wait_err:
    WAIT_OBJECT_0
    WAIT_TIMEOUT
    WAIT_FAILED
    WAIT_ABANDONED

Definition at line 886 of file WinTools.cpp.

887{
888 m_wait_err = WAIT_FAILED;
889 if (m_handle==NULL) return FALSE;
890
891 m_wait_err = WaitForSingleObject(m_handle, msec);
892
893 if (m_wait_err!=WAIT_OBJECT_0) return FALSE;
894 return TRUE;
895}

References EventHandler::m_handle, and EventHandler::m_wait_err.

◆ wait() [2/2]

BOOL wait ( HANDLE handle,
DWORD msec = INFINITE )

Definition at line 898 of file WinTools.cpp.

899{
900 m_wait_err = WAIT_FAILED;
901 if (handle==NULL) return FALSE;
902
903 m_wait_err = WaitForSingleObject(handle, msec);
904
905 if (m_wait_err!=WAIT_OBJECT_0) return FALSE;
906 return TRUE;
907}

References EventHandler::m_wait_err.

Member Data Documentation

◆ m_handle

◆ m_wait_err


The documentation for this class was generated from the following files: