From b61ba851da0157ace3bdfc1ebbf87156b0b76413 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 6 Jun 2012 08:58:27 +0000 Subject: protocols plugins moved to protocols git-svn-id: http://svn.miranda-ng.org/main/trunk@327 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Twitter/stubs.cpp | 140 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 protocols/Twitter/stubs.cpp (limited to 'protocols/Twitter/stubs.cpp') diff --git a/protocols/Twitter/stubs.cpp b/protocols/Twitter/stubs.cpp new file mode 100644 index 0000000000..331a4cdeac --- /dev/null +++ b/protocols/Twitter/stubs.cpp @@ -0,0 +1,140 @@ +/* +Copyright © 2009 Jim Porter + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +#include "common.h" +#include "proto.h" + +HANDLE TwitterProto::AddToListByEvent(int flags,int iContact,HANDLE hDbEvent) +{ + return 0; +} + +int TwitterProto::Authorize(HANDLE hContact) +{ + return 0; +} + +int TwitterProto::AuthDeny(HANDLE hContact,const TCHAR *reason) +{ + return 0; +} + +int TwitterProto::AuthRecv(HANDLE hContact,PROTORECVEVENT *) +{ + return 0; +} + +int TwitterProto::AuthRequest(HANDLE hContact,const TCHAR *message) +{ + return 0; +} + +HANDLE TwitterProto::ChangeInfo(int type,void *info_data) +{ + MessageBoxA(0,"ChangeInfo","",0); + return 0; +} + +HANDLE TwitterProto::FileAllow(HANDLE hContact,HANDLE hTransfer,const TCHAR *path) +{ + return 0; +} + +int TwitterProto::FileCancel(HANDLE hContact,HANDLE hTransfer) +{ + return 0; +} + +int TwitterProto::FileDeny(HANDLE hContact,HANDLE hTransfer,const TCHAR *reason) +{ + return 0; +} + +int TwitterProto::FileResume(HANDLE hTransfer,int *action,const TCHAR **filename) +{ + return 0; +} + +HANDLE TwitterProto::SearchByName(const TCHAR *nick,const TCHAR *first_name, const TCHAR *last_name) +{ + return 0; +} + +HWND TwitterProto::SearchAdvanced(HWND owner) +{ + return 0; +} + +HWND TwitterProto::CreateExtendedSearchUI(HWND owner) +{ + return 0; +} + +int TwitterProto::RecvContacts(HANDLE hContact,PROTORECVEVENT *) +{ + return 0; +} + +int TwitterProto::RecvFile(HANDLE hContact,PROTORECVFILET *) +{ + return 0; +} + +int TwitterProto::RecvUrl(HANDLE hContact,PROTORECVEVENT *) +{ + return 0; +} + +int TwitterProto::SendContacts(HANDLE hContact,int flags,int nContacts,HANDLE *hContactsList) +{ + return 0; +} + +HANDLE TwitterProto::SendFile(HANDLE hContact,const TCHAR *desc, TCHAR **files) +{ + return 0; +} + +int TwitterProto::SendUrl(HANDLE hContact,int flags,const char *url) +{ + return 0; +} + +int TwitterProto::SetApparentMode(HANDLE hContact,int mode) +{ + return 0; +} + +int TwitterProto::RecvAwayMsg(HANDLE hContact,int mode,PROTORECVEVENT *evt) +{ + return 0; +} + +int TwitterProto::SendAwayMsg(HANDLE hContact,HANDLE hProcess,const char *msg) +{ + return 0; +} + +int TwitterProto::SetAwayMsg(int status,const TCHAR *msg) +{ + return 0; +} + +int TwitterProto::UserIsTyping(HANDLE hContact,int type) +{ + return 0; +} \ No newline at end of file -- cgit v1.2.3