To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic User Guide
DLL Toolkit
GetBasicEvents
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
GetBasicEvents
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);