diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-18 15:28:53 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-18 15:28:53 +0000 |
commit | 64e4c45c42ce093c7e6e9a99a5a0938dc212aa59 (patch) | |
tree | 122b2f14bbe70ff575426974fcc947c3e2cc68ac /protocols/Tox/src/tox_proto.h | |
parent | b83de880f86db770d7c9b8dea1ac50973962703f (diff) |
added service for nickname changing
git-svn-id: http://svn.miranda-ng.org/main/trunk@12181 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r-- | protocols/Tox/src/tox_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h index 2de83cdd38..ecfcc94b50 100644 --- a/protocols/Tox/src/tox_proto.h +++ b/protocols/Tox/src/tox_proto.h @@ -169,6 +169,8 @@ private: INT_PTR __cdecl GetMyAvatar(WPARAM wParam, LPARAM lParam);
INT_PTR __cdecl SetMyAvatar(WPARAM wParam, LPARAM lParam);
+ INT_PTR __cdecl CToxProto::SetMyNickname(WPARAM wParam, LPARAM lParam);
+
static void OnGotFriendAvatarInfo(Tox *tox, int32_t number, uint8_t format, uint8_t *hash, void *arg);
static void OnGotFriendAvatarData(Tox *tox, int32_t number, uint8_t format, uint8_t *hash, uint8_t *data, uint32_t length, void *arg);
|