summaryrefslogtreecommitdiff
path: root/sigrokdecode-internal.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2012-03-25 15:08:16 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2012-03-28 01:19:27 +0200
commitaafeeaea1731a1e0c8322527ccb0e4cdcc5ffb01 (patch)
tree984d38c74881ebd044918dcf4a26cef081b1efaf /sigrokdecode-internal.h
parentb33b8aa56ec27edf57cd7dc3d735370f60bfe13d (diff)
downloadlibsigrokdecode-aafeeaea1731a1e0c8322527ccb0e4cdcc5ffb01.tar.gz
libsigrokdecode-aafeeaea1731a1e0c8322527ccb0e4cdcc5ffb01.zip
srd: Some more (optional) consistency renames.
Diffstat (limited to 'sigrokdecode-internal.h')
-rw-r--r--sigrokdecode-internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigrokdecode-internal.h b/sigrokdecode-internal.h
index 42e9118..5e45591 100644
--- a/sigrokdecode-internal.h
+++ b/sigrokdecode-internal.h
@@ -26,15 +26,15 @@
/*--- 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 -------------------------------------------------------------*/
@@ -42,7 +42,7 @@ 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 -----------------------------------------------------------------*/