mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
529 B
23 lines
529 B
//----------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2000.
|
|
//
|
|
// File: base64.hxx
|
|
//
|
|
// Contents: Header file for base64 encoding routine.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __BASE64_H__
|
|
#define __BASE64_H__
|
|
|
|
int encodeBase64Buffer(
|
|
char *inBufPtr,
|
|
int *inBytesPtr,
|
|
WCHAR *outBufPtr,
|
|
int *outBytesPtr,
|
|
int outLineLen
|
|
);
|
|
|
|
#endif // __BASE64_H__
|