mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-11 14:34:22 +00:00
12 lines
321 B
C
12 lines
321 B
C
//++ BulliT
|
|
|
|
#ifndef __AG_BASE64_H__
|
|
#define __AG_BASE64_H__
|
|
|
|
void AgBase64Decode(const char* pszString, unsigned long ulInLen, unsigned char* pszBuffer, unsigned short& ulOutLen);
|
|
void AgBase64Encode(const unsigned char* pszString, unsigned long ulInLen, char* pszBuffer);
|
|
|
|
#endif //__AG_BASE64_H__
|
|
|
|
//-- Martin Webrant
|