diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-19 05:35:59 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-02-19 05:35:59 +0000 |
commit | 0c8a73fbb620503f0bea7349c55002f7bdd6bbc1 (patch) | |
tree | 6419d47588ee06f4e42350d66a4c11fc66e2ad0d /protocols/Tox/src | |
parent | f843b6efbcaa17582efcc9ae1fe35d1d22edcb63 (diff) |
removed not used file
git-svn-id: http://svn.miranda-ng.org/main/trunk@12189 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r-- | protocols/Tox/src/tox_svc.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/protocols/Tox/src/tox_svc.cpp b/protocols/Tox/src/tox_svc.cpp deleted file mode 100644 index 83ea092f36..0000000000 --- a/protocols/Tox/src/tox_svc.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include "common.h"
-
-INT_PTR __cdecl CToxProto::SetMyNickname(WPARAM wParam, LPARAM lParam)
-{
- TCHAR *nickname = (wParam & SMNN_UNICODE) ? mir_u2t((WCHAR*)lParam) : mir_a2t((char*)lParam);
-
- setTString("Nick", nickname);
- tox_set_name(tox, (uint8_t*)(char*)_T2A(nickname), mir_tstrlen(nickname));
- return 0;
-}
|