Requests handles to events that can be monitored for reset and shutdown. The C++ function declaration is:
void GetBasicEvents(LPHANDLE ResetEvent, LPHANDLE ShutdownEvent);
ResetEvent and ShutdownEvent are Event handles that will be signaled if the corresponding event happens on the HTBasic Thread. A sample of the function is:
HANDLE hResetEvent,hShutdownEvent;
GetBasicEvents(&ResetEvent,&ShutdownEvent);
|