Creates a named or unnamed mutex object (Win32 function).
Kernel.bdh
CreateMutexEx( in sSecAttr : string, in bInitOwn : boolean, in sMtxName : string): number;
handle to mutex object
| Parameter | Description | 
|---|---|
| sSecAttr | Specifies the security attributes for the mutex object | 
| bInitOwn | 
                           
                            Specifies the initial owner of the mutex object: 
  | 
                        
                     
| sMtxName | Name of the mutex object | 
hMutex := CreateMutexEx(NULL, false, "MyConnectMutex");