|
FBX C++ API Reference
|
#include <fbxbase64coder.h>
This class decodes Base64 encoded data.
Definition at line 23 of file fbxbase64coder.h.
Public Member Functions | |
| int | Decode (const void *pInBuffer, int pInSize, void *pOutBuffer, int pOutSize) |
| Decodes the input buffer. More... | |
| int | Decode (const char *pInBuffer, void *pOutBuffer, int pOutSize) |
| Decodes the input buffer. More... | |
| int Decode | ( | const void * | pInBuffer, |
| int | pInSize, | ||
| void * | pOutBuffer, | ||
| int | pOutSize | ||
| ) |
Decodes the input buffer.
| pInBuffer | the input buffer containing Base64 data. |
| pInSize | the size of the input data in bytes (must be a multiple of 4) |
| pOutBuffer | the destination buffer. |
| pOutSize | the capacity of the output buffer in bytes. |
| int Decode | ( | const char * | pInBuffer, |
| void * | pOutBuffer, | ||
| int | pOutSize | ||
| ) |
Decodes the input buffer.
| pInBuffer | the input buffer containing Base64 data; its length is computed using strlen(). |
| pOutBuffer | the destination buffer. |
| pOutSize | the capacity of the output buffer in bytes. |