Creates a named or unnamed event object (Win32 function).
Kernel.bdh
CreateEventEx( in sSecAttr : string, in bManualReset : boolean, in bInitSignal : boolean, in sName : string ): number;
Handle to event object.
| Parameter | Description | 
|---|---|
| sSecAttr | Specifies the security attributes for the event object | 
| bManualReset | 
                           
                            Specifies whether a manual-reset or auto-reset event object is created: 
  | 
                        
                     
| bInitSignal | 
                           
                            Specifies the initial state of the event object: 
  | 
                        
                     
| sName | Name of the event object | 
hEvent := CreateEventEx(NULL, true, false, "MyStarterEvent");