diff options
Diffstat (limited to 'crypto/heimdal/lib/roken/base64.h')
-rw-r--r-- | crypto/heimdal/lib/roken/base64.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/crypto/heimdal/lib/roken/base64.h b/crypto/heimdal/lib/roken/base64.h index 5ad1e3b..09aadff 100644 --- a/crypto/heimdal/lib/roken/base64.h +++ b/crypto/heimdal/lib/roken/base64.h @@ -31,12 +31,23 @@ * SUCH DAMAGE. */ -/* $Id: base64.h,v 1.2 1999/12/02 16:58:45 joda Exp $ */ +/* $Id: base64.h 15535 2005-06-30 07:13:33Z lha $ */ #ifndef _BASE64_H_ #define _BASE64_H_ -int base64_encode(const void *data, int size, char **str); -int base64_decode(const char *str, void *data); +#ifndef ROKEN_LIB_FUNCTION +#ifdef _WIN32 +#define ROKEN_LIB_FUNCTION _stdcall +#else +#define ROKEN_LIB_FUNCTION +#endif +#endif + +int ROKEN_LIB_FUNCTION +base64_encode(const void *, int, char **); + +int ROKEN_LIB_FUNCTION +base64_decode(const char *, void *); #endif |