Class CWin32Event::
CWin32Event()
Base ClassesData ItemsConstructorsDestructorsFunctionsCustom CodeGo to hierarchy chart    Prev page: CWin32EventNext page: ~CWin32Event    Show member index
Public Constructor Declared in:
Win32Event.h

'Declaration' icon -- Shortcut to top of page. Declaration

CWin32Event(
    BOOL bInitialState=FALSE,
    BOOL bManualReset=FALSE,
    const char* pEventName=NULL);

'Description' icon -- Shortcut to top of page. Description

Ctor and Dtor bInitialState - Is the event started as Set/Reset bManualReset - Does the event resets automatically pEventName - Name of the event (for multiproccess)

'Initializer Override(s)' icon -- Shortcut to top of page. Initializer Override(s)

CGenericEvent(
bInitialState    
bManualReset    
pEventName)    
m_hEvent(
NULL)    

'Function Body' icon -- Shortcut to top of page. Function Body

//Create the event
m_hEvent=CreateEvent(NULL,
                     bManualReset,
                     bInitialState,
                     pEventName);

//Check if we are the owners
if (pEventName &&
    GetLastError()!=ERROR_ALREADY_EXISTS)
    SetFirst();

'See Also' icon -- Shortcut to top of page. See Also

Class Overview Class Overview  |  Public base class CGenericEvent  |  Hierarchy Chart Hierarchy Chart


Get Surveyor!This web site was generated using Surveyor V4.50.811.1.  Click here for more information. Site content copyright © 2003 Komodia LTD.. See the About page for additional notices. This page last updated: 24 Feb 2003.