HTBasic Help
×
Menu
Index

Registerthread

 
Hands HTBasic an event handle that it will wait on before shutting down. The C++ function declaration is:
 
void Registerthread(LPHANDLE phEvent);  
 
where, phEvent is an Event handle that is created in the DLL and handed to HTBasic. A sample of this is:
 
HANDLE hEvent;
RegisterThread(&hEvent);