summaryrefslogtreecommitdiff
path: root/lib/gnutls_compress_int.h
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2004-06-05 20:16:45 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2004-06-05 20:16:45 +0000
commitadcd5219ef049655a471179beb7af695fd78ac48 (patch)
tree1e0a16e1cef8502244a0748a4fcdb959cd58bdf7 /lib/gnutls_compress_int.h
parent388797851a48fc6fbcee50a00eb4c78be72e40f9 (diff)
downloadgnutls-adcd5219ef049655a471179beb7af695fd78ac48.tar.gz
some other changes to the internal types names.
Diffstat (limited to 'lib/gnutls_compress_int.h')
-rw-r--r--lib/gnutls_compress_int.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/gnutls_compress_int.h b/lib/gnutls_compress_int.h
index 1d0db4605a..7c1bfd404a 100644
--- a/lib/gnutls_compress_int.h
+++ b/lib/gnutls_compress_int.h
@@ -27,15 +27,15 @@
#define GNUTLS_COMP_FAILED NULL
-typedef struct GNUTLS_COMP_HANDLE_STRUCT {
+typedef struct comp_hd_t_STRUCT {
void* handle;
gnutls_compression_method algo;
-} *GNUTLS_COMP_HANDLE;
+} *comp_hd_t;
-GNUTLS_COMP_HANDLE _gnutls_comp_init( gnutls_compression_method, int d);
-void _gnutls_comp_deinit(GNUTLS_COMP_HANDLE handle, int d);
+comp_hd_t _gnutls_comp_init( gnutls_compression_method, int d);
+void _gnutls_comp_deinit(comp_hd_t handle, int d);
-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);
+int _gnutls_decompress( comp_hd_t handle, opaque* compressed, size_t compressed_size, opaque** plain, size_t max_record_size);
+int _gnutls_compress( comp_hd_t, const opaque* plain, size_t plain_size, opaque** compressed, size_t max_comp_size);
#endif