From 50421b7809c47bd95c59b4a5627e2f89c8bccfa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Tue, 29 Oct 2013 08:47:48 +0000 Subject: SkypeClassic: Folders structure and project cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@6668 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeClassic/src/gchat.h | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 protocols/SkypeClassic/src/gchat.h (limited to 'protocols/SkypeClassic/src/gchat.h') diff --git a/protocols/SkypeClassic/src/gchat.h b/protocols/SkypeClassic/src/gchat.h new file mode 100644 index 0000000000..f9bd283320 --- /dev/null +++ b/protocols/SkypeClassic/src/gchat.h @@ -0,0 +1,47 @@ +// m_chat users these BaseTSD types, so if we are compiling with an old PSDK, these typedefs +// are not there, so better define them, just in case... +#ifndef LongToPtr +#define DWORD_PTR DWORD +#endif + +#pragma warning (push) +#pragma warning (disable: 4201) // nonstandard extension used : nameless struct/union +#include +#pragma warning (pop) + +#define MAX_BUF 256 // Buffer for topic-string + +typedef struct { + HANDLE hContact; + TCHAR who[33]; + TCHAR szRole[12]; +} gchat_contact; + +typedef struct { + TCHAR* szChatName; // name of chat session + gchat_contact* mJoinedContacts; // contacts + int mJoinedCount; // contacts count +} gchat_contacts; + +int ChatInit(WPARAM, LPARAM); +int __cdecl ChatStart(char *szChatId, BOOL bJustCreate); +gchat_contacts *GetChat(TCHAR *szChatId); +HANDLE find_chat(TCHAR *chatname); +#ifdef _UNICODE +HANDLE find_chatA(char *chatname); +#else +#define find_chatA find_chat +#endif +void RemChatContact(gchat_contacts*, const TCHAR*); +gchat_contact *GetChatContact(gchat_contacts *gc, const TCHAR *who); +int AddMembers(char*); +void AddMembersThread(char *szSkypeMsg); +void RemChat(TCHAR *szChatId); +int GCEventHook (WPARAM, LPARAM); +int GCMenuHook (WPARAM, LPARAM); +void KillChatSession(GCDEST*); +INT_PTR GCOnLeaveChat(WPARAM wParam,LPARAM lParam); +INT_PTR GCOnJoinChat(WPARAM wParam,LPARAM lParam); +void GCInit(void); +void GCExit(void); +void SetChatTopic (TCHAR *szChatId, TCHAR *szTopic, BOOL bSet); -- cgit v1.2.3