diff options
author | George Hazan <george.hazan@gmail.com> | 2024-09-02 20:42:37 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-02 20:42:37 +0300 |
commit | e3e89f1237a1adc7bf71824c113e4ad7c5d34cfe (patch) | |
tree | f15fb2ae53296703661e0c42c6c14447d8fb8d9b /protocols/SkypeWeb/src/skype_utils.h | |
parent | 6753aca9ffa6a0569cf6cba2a47cda0e364f458c (diff) |
fixes #4595 (despite custom icons)
Diffstat (limited to 'protocols/SkypeWeb/src/skype_utils.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_utils.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_utils.h b/protocols/SkypeWeb/src/skype_utils.h index 2835ae45da..4a7f28e4c4 100644 --- a/protocols/SkypeWeb/src/skype_utils.h +++ b/protocols/SkypeWeb/src/skype_utils.h @@ -18,7 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifndef _UTILS_H_
#define _UTILS_H_
-CMStringW RemoveHtml(const CMStringW &src);
+void Utf32toUtf16(uint32_t c, CMStringW &dest);
+uint32_t Utf16toUtf32(const wchar_t *str);
const char* GetSkypeNick(const char *pszSkypeId);
const wchar_t* GetSkypeNick(const wchar_t *szSkypeId);
@@ -30,6 +31,8 @@ bool IsPossibleUserType(const char *pszUserId); CMStringA UrlToSkypeId(const char *url, int *pUserType = nullptr);
CMStringW UrlToSkypeId(const wchar_t *url, int *pUserType = nullptr);
+int getMoodIndex(const char *pszMood);
+
class EventHandle
{
HANDLE _hEvent;
|