Files
salmanoff/smocore/include/salmanoff.h
T
hayodea e5a3c41c20 SenseApis: Add threading model info to initialization info
We provide access to a thread whose event queue the sense API
libs can use for device-independent event management.
2025-09-06 22:46:03 -04:00

15 lines
259 B
C++

#ifndef _SALMANOFF_H
#define _SALMANOFF_H
#include <memory>
#include <componentThread.h>
namespace smo {
void initializeSalmanoff(std::shared_ptr<ComponentThread>& componentThread);
void shutdownSalmanoff(void);
} // namespace smo
#endif // _SALMANOFF_H