7 lines
194 B
C
7 lines
194 B
C
#ifndef __Base64_H
|
|
#define __Base64_H
|
|
|
|
void Base64Encode( LPCTSTR data, int size, LPTSTR output, int bufLen );
|
|
void Base64Decode( LPCTSTR data, int size, LPTSTR output, int bufLen );
|
|
|
|
#endif |