summaryrefslogtreecommitdiff
path: root/lib/gnutls_compress_int.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2003-11-04 12:52:32 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2003-11-04 12:52:32 +0000
commit4b04282504153b2d33ebd039c6422b7f2666f182 (patch)
tree9a8ad39c966b4d03a8b995e0e6081fb0e796c966 /lib/gnutls_compress_int.h
parentf6c3f96897a61ff9553d73da4643149fba7019fa (diff)
downloadgnutls-4b04282504153b2d33ebd039c6422b7f2666f182.tar.gz
some type fixes. Based on build logs sent by Dimitri Papadopoulos-Orfanos <papadopo@shfj.cea.fr>.
Diffstat (limited to 'lib/gnutls_compress_int.h')
-rw-r--r--lib/gnutls_compress_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gnutls_compress_int.h b/lib/gnutls_compress_int.h
index 010e53553d..1d0db4605a 100644
--- a/lib/gnutls_compress_int.h
+++ b/lib/gnutls_compress_int.h
@@ -35,7 +35,7 @@ typedef struct GNUTLS_COMP_HANDLE_STRUCT {
GNUTLS_COMP_HANDLE _gnutls_comp_init( gnutls_compression_method, int d);
void _gnutls_comp_deinit(GNUTLS_COMP_HANDLE handle, int d);
-int _gnutls_decompress( GNUTLS_COMP_HANDLE handle, char* compressed, size_t compressed_size, char** plain, size_t max_record_size);
-int _gnutls_compress( GNUTLS_COMP_HANDLE, const char* plain, size_t plain_size, char** compressed, size_t max_comp_size);
+int _gnutls_decompress( GNUTLS_COMP_HANDLE handle, opaque* compressed, size_t compressed_size, opaque** plain, size_t max_record_size);
+int _gnutls_compress( GNUTLS_COMP_HANDLE, const opaque* plain, size_t plain_size, opaque** compressed, size_t max_comp_size);
#endif