mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 17:50:40 +03:00
10 lines
198 B
C
10 lines
198 B
C
|
#ifndef ENCODING_H
|
||
|
#define ENCODING_H
|
||
|
|
||
|
#include "MayaType.h"
|
||
|
|
||
|
UINT Base64Decode(void *dst, const void *src, const UINT size);
|
||
|
UINT Base64Encode(void *dst, const void *src, const UINT size);
|
||
|
|
||
|
#endif
|