Wakes up a single thread that is waiting on this object's monitor.
void __cdecl monitorNotify(UINT_PTR object);
object | Synchronization object. |
You can use the ObjectMonitorNotify macro to automatically cast the synchronization object to an integer and call this method. This method is the native equivalent of the Java.lang.Object.notify method.