From 4265115fa3aa2c8836bcd8cde420c936083ab45e Mon Sep 17 00:00:00 2001 From: Jochen De Smet Date: Wed, 1 Dec 2010 22:38:01 -0500 Subject: [PATCH] Remove old leftover header --- src/miranda/sipe-miranda.h | 84 ---------------------------------------------- 1 file changed, 84 deletions(-) delete mode 100644 src/miranda/sipe-miranda.h diff --git a/src/miranda/sipe-miranda.h b/src/miranda/sipe-miranda.h deleted file mode 100644 index b90fd86f..00000000 --- a/src/miranda/sipe-miranda.h +++ /dev/null @@ -1,84 +0,0 @@ -#ifndef _SIPSIMPLE_PROTO_H_ -#define _SIPSIMPLE_PROTO_H_ - -#define MIRANDA_VER 0x0800 - -#include - -#include -#include -#include -#include -#include -#include - -#pragma warning(disable : 4996) -#define __MIRANDA_COMPATIBLE__ -#define SIPSIMPLE_PROTOCOL_NAME LPGEN("SIP/SIMPLE") -#define SIP_UNIQUEID "sip_screenname" - -#ifndef IDC_STATIC -#define IDC_STATIC (-1) -#endif - -struct CSipSimpleProto : public PROTO_INTERFACE -{ - - CSipSimpleProto( const char*, const TCHAR* ); - ~CSipSimpleProto(); - - //==================================================================================== - // PROTO_INTERFACE - //==================================================================================== - - virtual HANDLE __cdecl AddToList( int flags, PROTOSEARCHRESULT* psr ); - virtual HANDLE __cdecl AddToListByEvent( int flags, int iContact, HANDLE hDbEvent ); - - virtual int __cdecl Authorize( HANDLE hContact ); - virtual int __cdecl AuthDeny( HANDLE hContact, const char* szReason ); - virtual int __cdecl AuthRecv( HANDLE hContact, PROTORECVEVENT* ); - virtual int __cdecl AuthRequest( HANDLE hContact, const char* szMessage ); - - virtual HANDLE __cdecl ChangeInfo( int iInfoType, void* pInfoData ); - - virtual HANDLE __cdecl FileAllow( HANDLE hContact, HANDLE hTransfer, const char* szPath ); - virtual int __cdecl FileCancel( HANDLE hContact, HANDLE hTransfer ); - virtual int __cdecl FileDeny( HANDLE hContact, HANDLE hTransfer, const char* szReason ); - virtual int __cdecl FileResume( HANDLE hTransfer, int* action, const char** szFilename ); - - virtual DWORD_PTR __cdecl GetCaps( int type, HANDLE hContact = NULL ); - virtual HICON __cdecl GetIcon( int iconIndex ); - virtual int __cdecl GetInfo( HANDLE hContact, int infoType ); - - virtual HANDLE __cdecl SearchBasic( const char* id ); - virtual HANDLE __cdecl SearchByEmail( const char* email ); - virtual HANDLE __cdecl SearchByName(const char *nick, const char *firstName, const char *lastName); - virtual HWND __cdecl SearchAdvanced( HWND owner ); - virtual HWND __cdecl CreateExtendedSearchUI( HWND owner ); - - virtual int __cdecl RecvContacts( HANDLE hContact, PROTORECVEVENT* ); - virtual int __cdecl RecvFile( HANDLE hContact, PROTORECVFILE* ); - virtual int __cdecl RecvMsg( HANDLE hContact, PROTORECVEVENT* ); - virtual int __cdecl RecvUrl( HANDLE hContact, PROTORECVEVENT* ); - - virtual int __cdecl SendContacts( HANDLE hContact, int flags, int nContacts, HANDLE* hContactsList ); - virtual HANDLE __cdecl SendFile( HANDLE hContact, const char* szDescription, char** ppszFiles ); - virtual int __cdecl SendMsg( HANDLE hContact, int flags, const char* msg ); - virtual int __cdecl SendUrl( HANDLE hContact, int flags, const char* url ); - - virtual int __cdecl SetApparentMode( HANDLE hContact, int mode ); - virtual int __cdecl SetStatus( int iNewStatus ); - - virtual HANDLE __cdecl GetAwayMsg( HANDLE hContact ); - virtual int __cdecl RecvAwayMsg( HANDLE hContact, int mode, PROTORECVEVENT* evt ); - virtual int __cdecl SendAwayMsg( HANDLE hContact, HANDLE hProcess, const char* msg ); - virtual int __cdecl SetAwayMsg( int m_iStatus, const char* msg ); - - virtual int __cdecl UserIsTyping( HANDLE hContact, int type ); - - virtual int __cdecl OnEvent( PROTOEVENTTYPE eventType, WPARAM wParam, LPARAM lParam ); - -}; - -#endif - -- 2.11.4.GIT