 |
OpenEvent ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The OpenEvent function opens an existing named event object. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HANDLE OpenEvent(
DWORD dwDesiredAccess, // access
BOOL bInheritHandle, // inheritance option
LPCTSTR lpName // object name
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER OpenEvent IN kernel32;
INTEGER dwDesiredAccess,;
INTEGER bInheritHandle,;
STRING lpName
|
 |
 |
 |
| Parameters: |
 |
dwDesiredAccess
[in] Specifies the requested access to the event object.
bInheritHandle
[in] Specifies whether the returned handle is inheritable.
lpName
[in] Pointer to a null-terminated string that names the event to be opened. Name comparisons are case sensitive. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is a handle to the event object. |
 |
 |
| Word Index links for the OpenEvent : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-09-16 12:00:00 | | Modified: | 2001-11-26 16:03:39 | Visited in last 7 days: 26 |