1 2 #ifndef __WINE_BASE64_CODEC_H__ 3 #define __WINE_BASE64_CODEC_H__ 4 5 /* Functions from base64_codec.c used elsewhere */ 6 SECURITY_STATUS encodeBase64(PBYTE in_buf, int in_len, char* out_buf, 7 int max_len, int *out_len) DECLSPEC_HIDDEN; 8 9 SECURITY_STATUS decodeBase64(char *in_buf, int in_len, BYTE *out_buf, 10 int max_len, int *out_len) DECLSPEC_HIDDEN; 11 12 #endif /* __WINE_BASE64_CODEC_H__ */ 13