diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-13 18:34:25 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-13 18:34:25 +0000 |
commit | 1a9f50fcbc79413ccc669349b682aa6a6ebb398b (patch) | |
tree | a7673155e97d56f5714a5f9cb3e74f941e961346 /protocols/Twitter/stubs.cpp | |
parent | 5aa2a6fdad72feeff99041bfdf17fd607a45033a (diff) |
Twitter: folders restructurization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1909 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/stubs.cpp')
-rw-r--r-- | protocols/Twitter/stubs.cpp | 139 |
1 files changed, 0 insertions, 139 deletions
diff --git a/protocols/Twitter/stubs.cpp b/protocols/Twitter/stubs.cpp deleted file mode 100644 index 472138abe3..0000000000 --- a/protocols/Twitter/stubs.cpp +++ /dev/null @@ -1,139 +0,0 @@ -/*
-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 <http://www.gnu.org/licenses/>.
-*/
-
-#include "proto.h"
-
-HANDLE TwitterProto::AddToListByEvent(int flags,int iContact,HANDLE hDbEvent)
-{
- return NULL;
-}
-
-int TwitterProto::Authorize(HANDLE hDbEvent)
-{
- return 1;
-}
-
-int TwitterProto::AuthDeny(HANDLE hDbEvent,const TCHAR *reason)
-{
- return 1;
-}
-
-int TwitterProto::AuthRecv(HANDLE hContact,PROTORECVEVENT *)
-{
- return 1;
-}
-
-int TwitterProto::AuthRequest(HANDLE hContact,const TCHAR *message)
-{
- return 1;
-}
-
-HANDLE TwitterProto::ChangeInfo(int type,void *info_data)
-{
- MessageBoxA(0,"ChangeInfo","",0);
- return NULL;
-}
-
-HANDLE TwitterProto::FileAllow(HANDLE hContact,HANDLE hTransfer,const TCHAR *path)
-{
- return NULL;
-}
-
-int TwitterProto::FileCancel(HANDLE hContact,HANDLE hTransfer)
-{
- return 1;
-}
-
-int TwitterProto::FileDeny(HANDLE hContact,HANDLE hTransfer,const TCHAR *reason)
-{
- return 1;
-}
-
-int TwitterProto::FileResume(HANDLE hTransfer,int *action,const TCHAR **filename)
-{
- return 1;
-}
-
-HANDLE TwitterProto::SearchByName(const TCHAR *nick,const TCHAR *first_name, const TCHAR *last_name)
-{
- return NULL;
-}
-
-HWND TwitterProto::SearchAdvanced(HWND owner)
-{
- return NULL;
-}
-
-HWND TwitterProto::CreateExtendedSearchUI(HWND owner)
-{
- return NULL;
-}
-
-int TwitterProto::RecvContacts(HANDLE hContact,PROTORECVEVENT *)
-{
- return 1;
-}
-
-int TwitterProto::RecvFile(HANDLE hContact,PROTORECVFILET *)
-{
- return 1;
-}
-
-int TwitterProto::RecvUrl(HANDLE hContact,PROTORECVEVENT *)
-{
- return 1;
-}
-
-int TwitterProto::SendContacts(HANDLE hContact,int flags,int nContacts,HANDLE *hContactsList)
-{
- return 1;
-}
-
-HANDLE TwitterProto::SendFile(HANDLE hContact,const TCHAR *desc, TCHAR **files)
-{
- return NULL;
-}
-
-int TwitterProto::SendUrl(HANDLE hContact,int flags,const char *url)
-{
- return 1;
-}
-
-int TwitterProto::SetApparentMode(HANDLE hContact,int mode)
-{
- return 1;
-}
-
-int TwitterProto::RecvAwayMsg(HANDLE hContact,int mode,PROTORECVEVENT *evt)
-{
- return 1;
-}
-
-int TwitterProto::SendAwayMsg(HANDLE hContact,HANDLE hProcess,const char *msg)
-{
- return 1;
-}
-
-int TwitterProto::SetAwayMsg(int status,const TCHAR *msg)
-{
- return 1;
-}
-
-int TwitterProto::UserIsTyping(HANDLE hContact,int type)
-{
- return 1;
-}
\ No newline at end of file |