------------------------------------------------------------ revno: 12 committer: poy <[email protected]> branch nick: dcpp-plugin-sdk-c timestamp: Sun 2013-03-03 20:23:58 +0100 message: update the plugin API modified: pluginsdk/PluginDefs.h
-- lp:dcpp-plugin-sdk-c https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-c/trunk Your team Dcplusplus-team is subscribed to branch lp:dcpp-plugin-sdk-c. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-c/trunk/+edit-subscription
=== modified file 'pluginsdk/PluginDefs.h' --- pluginsdk/PluginDefs.h 2013-01-29 18:13:20 +0000 +++ pluginsdk/PluginDefs.h 2013-03-03 19:23:58 +0000 @@ -74,7 +74,7 @@ #define DCINTF_DCPP_QUEUE_VER 2 #define DCINTF_DCPP_UTILS "dcpp.utils.DCUtils" /* Utility and convenience functions */ -#define DCINTF_DCPP_UTILS_VER 1 +#define DCINTF_DCPP_UTILS_VER 2 #define DCINTF_DCPP_TAGGER "dcpp.xml.DCTagger" /* Manipulation of an XML tagger */ #define DCINTF_DCPP_TAGGER_VER 2 @@ -409,6 +409,8 @@ /* Utility API version */ uint32_t apiVersion; + /* These functions attempt a conversion; they return the required buffer size. */ + size_t (DCAPI *to_utf8) (char* dst, const char* src, size_t n); size_t (DCAPI *from_utf8) (char* dst, const char* src, size_t n);
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : [email protected] Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp

