Adds StopNotifier and StopRpcServer functions

Workaround for #30.  Allows libraries to shut down the secondary
threads.
This commit is contained in:
Thad House
2015-11-11 20:50:30 -08:00
parent 3469f6733c
commit a142cc48d3
5 changed files with 30 additions and 0 deletions

View File

@@ -333,6 +333,14 @@ void NT_StopClient(void) {
nt::StopClient();
}
void NT_StopRpcServer(void) {
nt::StopRpcServer();
}
void NT_StopNotifier(void) {
nt::StopNotifier();
}
void NT_SetUpdateRate(double interval) {
nt::SetUpdateRate(interval);
}