gtdc/tdc_store.h

17 lines
378 B
C
Raw Normal View History

2008-03-17 18:36:41 +01:00
#ifndef TDC_STORE_H_
#define TDC_STORE_H_
2008-03-18 19:30:21 +01:00
#include "tdc_variable.h"
2008-03-17 18:36:41 +01:00
2008-03-18 19:30:21 +01:00
void tdcstore_set_name(int address, char *name);
char * tdcstore_get_name(int address);
2008-03-17 18:36:41 +01:00
2008-03-18 19:30:21 +01:00
int tdcstore_set_var(int address, struct tdc_var *var);
struct tdc_var * tdcstore_get_var(int address, int id);
2008-03-17 21:16:52 +01:00
2008-03-18 19:30:21 +01:00
void tdcstore_trigger_update(int address, int id);
void tdcstore_flush(void);
2008-03-17 18:36:41 +01:00
#endif /* TDC_STORE_H_ */