X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=sigrokdecode-internal.h;h=5e455919841f2fef6fde923370642cec43ab824e;hp=5351b13cb6b9c49bd97cb07b7fb3bbb1cb017c56;hb=51990c45a1cdcf023f3bbe75a5003c87f8ac902b;hpb=abeeed8b6da45e1854bc151a8175836b5ca38e34 diff --git a/sigrokdecode-internal.h b/sigrokdecode-internal.h index 5351b13..5e45591 100644 --- a/sigrokdecode-internal.h +++ b/sigrokdecode-internal.h @@ -26,23 +26,23 @@ /*--- controller.c ----------------------------------------------------------*/ -SRD_PRIV int add_modulepath(const char *path); +SRD_PRIV int srd_decoder_searchpath_add(const char *path); SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di, PyObject *args); SRD_PRIV int srd_inst_decode(uint64_t start_samplenum, const struct srd_decoder_inst *dec, const uint8_t *inbuf, uint64_t inbuflen); SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di); SRD_PRIV void srd_inst_free_all(GSList *stack); -SRD_PRIV int pd_add(struct srd_decoder_inst *di, int output_type, - const char *output_id); +SRD_PRIV int srd_inst_pd_output_add(struct srd_decoder_inst *di, + int output_type, const char *output_id); /*--- decoder.c -------------------------------------------------------------*/ -SRD_PRIV void *srd_find_callback(int output_type); +SRD_PRIV void *srd_pd_output_callback_find(int output_type); /*--- exception.c -----------------------------------------------------------*/ -SRD_PRIV void catch_exception(const char *format, ...); +SRD_PRIV void srd_exception_catch(const char *format, ...); /*--- log.c -----------------------------------------------------------------*/