}
}
+SR_PRIV struct sr_config *sr_config_make(int key, const void *value)
+{
+ struct sr_config *src;
+
+ if (!(src = g_try_malloc(sizeof(struct sr_config))))
+ return NULL;
+ src->key = key;
+ src->value = value;
+
+ return src;
+}
+
/**
* Returns information about the given driver or device instance.
*
/*--- hwdriver.c ------------------------------------------------------------*/
SR_PRIV void sr_hw_cleanup_all(void);
+SR_PRIV struct sr_config *sr_config_make(int key, const void *value);
SR_PRIV int sr_source_remove(int fd);
SR_PRIV int sr_source_add(int fd, int events, int timeout,
sr_receive_data_callback_t cb, void *cb_data);