aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-22 10:25:23 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-22 10:25:23 -0600
commit057d06fae9818b0cd9b4ad87a98dcea51c2df875 (patch)
treee077fa29228a429734cf1599b3ce0e1c0d0737b9 /include
parent3a0c6bbd603e9420ef2d8eaf9e3b71f7ddd6538a (diff)
parentc89c5e9068ecf242012532bc467046f08ada1faf (diff)
downloadlibsurvive-057d06fae9818b0cd9b4ad87a98dcea51c2df875.tar.gz
libsurvive-057d06fae9818b0cd9b4ad87a98dcea51c2df875.tar.bz2
Merge branch 'internalize_record'
Diffstat (limited to 'include')
-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;