| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | Base64Decode | (hzString&,const hzString&,) |
Declared in file: hzCodec.h
Defined in file : hzCodec.cpp
Function Logic:
Function body:
hzEcode Base64Decode (hzString& Decoded, const hzString& raw)
{
hzChain Z ;
hzEcode rc ;
Decoded.Clear() ;
rc = Base64Decode(Z, raw) ;
if (rc == E_OK)
Decoded = Z ;
return rc ;
}