- See the wxBase64Decode(void*,size_t,const char*,size_t,wxBase64DecodeMode,size_t)
- overload for more info about the parameters of this function.
+ Decode a Base64-encoded wxString.
+
+ See the wxBase64Decode(void*,size_t,const char*,size_t,wxBase64DecodeMode,size_t*)
+ overload for more information about the parameters of this function, the
+ only difference between it and this one is that a wxString is used instead
+ of a @c char* pointer and its length.
+
+ @since 2.9.1
+
+ @header{wx/base64.h}
+ */
+size_t wxBase64Decode(void* dst, size_t dstLen,
+ const wxString& str,
+ wxBase64DecodeMode mode = wxBase64DecodeMode_Strict,
+ size_t *posErr = NULL);