X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=sigrokdecode.h;h=ae4ec81650b6c89c87d977f8ea19e7e87ea66152;hp=18ab5135efd4390198cab0789b3b73c2493eabdc;hb=65e1c7d091956e42aa4d97d7b639e10076e6f8ff;hpb=ae53d0a5971121e03a07c469e39ff3cfa34a2111 diff --git a/sigrokdecode.h b/sigrokdecode.h index 18ab513..ae4ec81 100644 --- a/sigrokdecode.h +++ b/sigrokdecode.h @@ -174,12 +174,12 @@ struct srd_proto_data { }; typedef void (*srd_pd_output_callback_t)(struct srd_proto_data *pdata, - void *data); + void *user_data); struct srd_pd_callback { int output_type; srd_pd_output_callback_t callback; - void *data; + void *user_data; }; /* custom python types */ @@ -199,9 +199,9 @@ typedef struct { /*--- controller.c ----------------------------------------------------------*/ -SRD_API int srd_init(void); +SRD_API int srd_init(char *path); SRD_API int srd_exit(void); -SRD_API int set_modulepath(void); +SRD_PRIV int add_modulepath(const char *path); SRD_API int srd_inst_set_options(struct srd_decoder_inst *di, GHashTable *options); SRD_API int srd_inst_set_probes(struct srd_decoder_inst *di, @@ -225,7 +225,7 @@ SRD_API int srd_session_feed(uint64_t start_samplenum, uint8_t *inbuf, uint64_t inbuflen); SRD_API struct srd_decoder_inst *get_di_by_decobject(void *decobject); SRD_API int srd_register_callback(int output_type, - srd_pd_output_callback_t cb, void *data); + srd_pd_output_callback_t cb, void *user_data); SRD_API void *srd_find_callback(int output_type); /*--- decoder.c -------------------------------------------------------------*/ @@ -240,12 +240,12 @@ SRD_API char *srd_decoder_doc(struct srd_decoder *dec); /*--- log.c -----------------------------------------------------------------*/ -typedef int (*srd_log_handler_t)(void *data, int loglevel, const char *format, - va_list args); +typedef int (*srd_log_handler_t)(void *user_data, int loglevel, + const char *format, va_list args); SRD_API int srd_log_loglevel_set(int loglevel); SRD_API int srd_log_loglevel_get(void); -SRD_API int srd_log_handler_set(srd_log_handler_t handler, void *data); +SRD_API int srd_log_handler_set(srd_log_handler_t handler, void *user_data); SRD_API int srd_log_handler_set_default(void); SRD_API int srd_log_logdomain_set(const char *logdomain); SRD_API char *srd_log_logdomain_get(void);