mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-28 02:11:43 +00:00
[wpiutil] DataLog: Add AddSchema functions to C API (#6232)
This commit is contained in:
@@ -1373,6 +1373,15 @@ void WPI_DataLog_AppendStringArray(struct WPI_DataLog* datalog, int entry,
|
||||
const WPI_DataLog_String* arr, size_t len,
|
||||
int64_t timestamp);
|
||||
|
||||
void WPI_DataLog_AddSchemaString(struct WPI_DataLog* datalog, int entry,
|
||||
const char* name, const char* type,
|
||||
const char* schema, int64_t timestamp);
|
||||
|
||||
void WPI_DataLog_AddSchema(struct WPI_DataLog* datalog, int entry,
|
||||
const char* name, const char* type,
|
||||
const uint8_t* schema, size_t schema_len,
|
||||
int64_t timestamp);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif // __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user