mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-09 23:34:38 +01:00
* All core Data Model move to core micro-service * New bbfdmd daemon to use async call to optimize RPCs handling
17 lines
328 B
C
17 lines
328 B
C
#ifndef SET_H
|
|
#define SET_H
|
|
|
|
enum {
|
|
DM_SET_PATH,
|
|
DM_SET_VALUE,
|
|
DM_SET_TYPE,
|
|
DM_SET_OBJ_PATH,
|
|
DM_SET_OPTIONAL,
|
|
__DM_SET_MAX,
|
|
};
|
|
|
|
int fill_pvlist_set(char *param_name, char *param_value, char *data_type, struct blob_attr *blob_table, struct list_head *pv_list);
|
|
int bbfdm_set_value(bbfdm_data_t *data);
|
|
|
|
#endif /* SET_H */
|
|
|