diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-29 17:27:23 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-29 17:27:23 +0000 |
commit | cdd84a443d08a4f5748b52b102ce17dfd267acc5 (patch) | |
tree | e2899cfeaa8f8127dd3674ec43a66f152b146b2b /protocols/Twitter/src/utility.h | |
parent | 57cc565a85d08a1fefb0035374f9e4d061500723 (diff) |
twitter moved to the kernel json driver
git-svn-id: http://svn.miranda-ng.org/main/trunk@13248 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/src/utility.h')
-rw-r--r-- | protocols/Twitter/src/utility.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/Twitter/src/utility.h b/protocols/Twitter/src/utility.h index fec8d6b23c..3736ca2928 100644 --- a/protocols/Twitter/src/utility.h +++ b/protocols/Twitter/src/utility.h @@ -23,6 +23,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. std::string b64encode(const std::string &s);
+std::string int2str(int32_t);
+std::string int2str(uint64_t);
+
class mir_twitter : public twitter
{
public:
@@ -51,8 +54,7 @@ public: std::wstring OAuthWebRequestSubmit(
const OAuthParameters& parameters,
- const std::wstring& url
- );
+ const std::wstring& url);
std::wstring UrlGetQuery( const std::wstring& url );
|