firmware  v0.1.2
Chromation Spectrometer Dev-Kit
RecordedCall.h
1 #ifndef _RECORDEDCALL_H
2 #define _RECORDEDCALL_H
3 
4 #include <glib.h> // GString, GList
5 
6 //=====[ mock-c RecordedCall datatype ]=====
7 typedef struct RecordedCall RecordedCall;
8 struct RecordedCall {
9  char const * name;
10  GList *inputs; // The GList must be initialized to NULL.
11 };
12 RecordedCall * RecordedCall_new(char const *name);
13 void RecordedCall_destroy(RecordedCall *self);
14 
15 #endif // _RECORDEDCALL_H