aboutsummaryrefslogtreecommitdiff
path: root/include/libsurvive
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-21 14:41:16 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-22 09:56:35 -0600
commit6f54646482e44051af1d3e2965012888b00e2038 (patch)
treeed8b08fad97b96288207ac82be92cf9736f55776 /include/libsurvive
parent3a0c6bbd603e9420ef2d8eaf9e3b71f7ddd6538a (diff)
downloadlibsurvive-6f54646482e44051af1d3e2965012888b00e2038.tar.gz
libsurvive-6f54646482e44051af1d3e2965012888b00e2038.tar.bz2
Internalize data recorder details
Diffstat (limited to 'include/libsurvive')
-rw-r--r--include/libsurvive/survive.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libsurvive/survive.h b/include/libsurvive/survive.h
index cb144bd..0b85bf3 100644
--- a/include/libsurvive/survive.h
+++ b/include/libsurvive/survive.h
@@ -159,6 +159,8 @@ typedef struct
typedef enum { SURVIVE_STOPPED = 0, SURVIVE_RUNNING, SURVIVE_CLOSING, SURVIVE_STATE_MAX } SurviveState;
+struct SurviveRecordingData;
+
struct SurviveContext
{
text_feedback_func faultfunction;
@@ -180,7 +182,7 @@ struct SurviveContext
int activeLighthouses;
BaseStationData bsd[NUM_LIGHTHOUSES];
SurviveCalData * calptr; //If and only if the calibration subsystem is attached.
-
+ struct SurviveRecordingData *recptr; // Iff recording is attached
SurviveObject ** objs;
int objs_ct;