xdf_add_event
Appends an event to the data file
- Provided by: libxdffileio-dev (Version: 0.3-4ubuntu3)
- Source: xdffileio
- Report a bug
Appends an event to the data file
#include <xdfio.h>
int xdf_add_event(struct xdf* xdf, int
evttype,
double onset, double dur);
xdf_add_event() appends to the file referenced by the handle xdf opened for writing an event of type evttype at time onset lasting for a duration dur expressed in seconds. If the event has no notion of duration, dur should be set to 0. evttype should be a value returned by a successful call to xdf_add_evttype(3).
xdf_add_event() returns 0 in case of success. Otherwise -1 is returned and errno is set appropriately.