ISynchronizeEvent interface
Assigns an event handle to a synchronization object.
The synchronization object can use a handle to manage its activities. For example, the wait functions use handles to identify the event they control. Thus, the logic of the ISynchronize::Signal method on an event synchronization object can pass its handle to the SetEvent function.
When to implement
You typically do not implement ISynchronizeEvent. This interface is implemented on two system-supplied synchronization objects, the standard event object (CLSID_StdEvent) and the manual reset event object (CLSID_ManualResetEvent).
When to use
Use ISynchronizeEvent to assign an event handle to a synchronization object.
Members
The ISynchronizeEvent interface inherits from ISynchronizeHandle. ISynchronizeEvent also has these types of members:
Methods
The ISynchronizeEvent interface has these methods.
| Method | Description |
|---|---|
| SetEventHandle |
Assigns an event handle to a synchronization object. |
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
IDL |
|
|
IID |
IID_ISynchronizeEvent is defined as 00000032-0000-0000-C000-000000000046 |
See also