summaryrefslogtreecommitdiff
path: root/src/xine-utils/base64.h
diff options
context:
space:
mode:
authorThibaut Mattern <thibaut.mattern@gmail.com>2007-04-10 18:45:53 +0200
committerThibaut Mattern <thibaut.mattern@gmail.com>2007-04-10 18:45:53 +0200
commit0ce330ec329e1d15a49ae5c5ea4741bcfbf924d3 (patch)
treea953f2cfa4b88857464284ccbf9eb14dca71d202 /src/xine-utils/base64.h
parent42cbd632976d2c9d5293ad03418dce3c7db2797d (diff)
downloadxine-lib-0ce330ec329e1d15a49ae5c5ea4741bcfbf924d3.tar.gz
xine-lib-0ce330ec329e1d15a49ae5c5ea4741bcfbf924d3.tar.bz2
Config entry deserialization.
Diffstat (limited to 'src/xine-utils/base64.h')
-rw-r--r--src/xine-utils/base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/base64.h b/src/xine-utils/base64.h
index 6a45aebc6..409d4c64e 100644
--- a/src/xine-utils/base64.h
+++ b/src/xine-utils/base64.h
@@ -92,7 +92,7 @@
unsigned char *rfc822_binary (void *src,unsigned long srcl,unsigned long *len);
-unsigned char *base64_encode (void *src,unsigned long srcl,unsigned long *len);
-void *base64_decode (unsigned char *src,unsigned long srcl,unsigned long *len);
+char *base64_encode (const void *src, unsigned long srcl, unsigned long *len);
+void *base64_decode (const char *src, unsigned long srcl, unsigned long *len);
#endif