aboutsummaryrefslogtreecommitdiff
path: root/include/libsurvive/survive_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libsurvive/survive_api.h')
-rw-r--r--include/libsurvive/survive_api.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libsurvive/survive_api.h b/include/libsurvive/survive_api.h
index 30e30ac..aacd47a 100644
--- a/include/libsurvive/survive_api.h
+++ b/include/libsurvive/survive_api.h
@@ -8,7 +8,7 @@ extern "C" {
struct SurviveAsyncContext;
typedef struct SurviveAsyncContext SurviveAsyncContext;
- SURVIVE_EXPORT SurviveAsyncContext *survive_asyc_init(int argc, char *const *argv);
+ SURVIVE_EXPORT SurviveAsyncContext *survive_async_init(int argc, char *const *argv);
SURVIVE_EXPORT void survive_async_close(SurviveAsyncContext* actx);
SURVIVE_EXPORT void survive_async_start_thread(SurviveAsyncContext* actx);
@@ -22,8 +22,9 @@ extern "C" {
SURVIVE_EXPORT const SurviveAsyncObject* survive_async_get_next_tracked(SurviveAsyncContext* actx, const SurviveAsyncObject* curr);
SURVIVE_EXPORT const SurviveAsyncObject* survive_async_get_next_updated(SurviveAsyncContext* actx);
- SURVIVE_EXPORT survive_timecode survive_async_object_get_latest_pose(const SurviveAsyncObject* sao, SurvivePose* pose);
- SURVIVE_EXPORT const char* survive_async_object_name(SurviveAsyncObject* sao);
+ SURVIVE_EXPORT survive_timecode survive_async_object_get_latest_pose(const SurviveAsyncObject *sao,
+ SurvivePose *OUTPUT);
+ SURVIVE_EXPORT const char *survive_async_object_name(const SurviveAsyncObject *sao);
#ifdef __cplusplus
}