From 66526765714b08969548a414d3fa87dbe333242d Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Sat, 28 Jul 2012 19:25:08 +0000 Subject: "!Deprecated" folders moved from root directory to plugins git-svn-id: http://svn.miranda-ng.org/main/trunk@1230 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/!NotAdopted/Skype/gchat.h | 47 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 plugins/!NotAdopted/Skype/gchat.h (limited to 'plugins/!NotAdopted/Skype/gchat.h') diff --git a/plugins/!NotAdopted/Skype/gchat.h b/plugins/!NotAdopted/Skype/gchat.h new file mode 100644 index 0000000000..1bb105d8b5 --- /dev/null +++ b/plugins/!NotAdopted/Skype/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 "../../include/m_chat.h" +#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