+/**
+ Elements of this enum specify the possible behaviours of wxBase64Decode
+ when an invalid character is encountered.
+*/
+enum wxBase64DecodeMode
+{
+ wxBase64DecodeMode_Strict, ///< Normal behaviour: stop at any invalid characters.
+ wxBase64DecodeMode_SkipWS, ///< Skip whitespace characters.
+ wxBase64DecodeMode_Relaxed ///< The most lenient behaviour: simply ignore all invalid characters.
+};
+