summaryrefslogtreecommitdiff
path: root/protocols/Yahoo/file_transfer.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-10-14 08:19:21 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-10-14 08:19:21 +0000
commite179ffc995c96568bfdce46ac73f58d569166f05 (patch)
treeee2dfd530b75ef4ae06cb7079c923fe7e2fbafa8 /protocols/Yahoo/file_transfer.h
parentd722261be7a0cd3aa259aa285aea7f936c0e2f0e (diff)
Yahoo: folders restructurization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1918 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/file_transfer.h')
-rw-r--r--protocols/Yahoo/file_transfer.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/protocols/Yahoo/file_transfer.h b/protocols/Yahoo/file_transfer.h
deleted file mode 100644
index f33d7cd046..0000000000
--- a/protocols/Yahoo/file_transfer.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * $Id: file_transfer.h 11130 2010-01-13 22:49:25Z gena01@gmail.com $
- *
- * myYahoo Miranda Plugin
- *
- * Authors: Gennady Feldman (aka Gena01)
- * Laurent Marechal (aka Peorth)
- *
- * This code is under GPL and is based on AIM, MSN and Miranda source code.
- * I want to thank Robert Rainwater and George Hazan for their code and support
- * and for answering some of my questions during development of this plugin.
- */
-#ifndef _YAHOO_FILE_TRANSFER_H_
-#define _YAHOO_FILE_TRANSFER_H_
-
-#define FILERESUME_CANCEL 11
-
-typedef struct {
- CYahooProto* ppro;
- int id;
- char *who;
- char *msg;
- char *ftoken;
- char *relay;
- HANDLE hContact;
- int cancel;
- char *url;
- HANDLE hWaitEvent;
- DWORD action;
- int y7;
- YList *files;
- PROTOFILETRANSFERSTATUS pfts;
-} y_filetransfer;
-
-/* libyahoo2 callback(s) */
-void ext_yahoo_got_file(int id, const char *me, const char *who, const char *url, long expires, const char *msg, const char *fname, unsigned long fesize, const char *ft_token, int y7);
-void ext_yahoo_got_files(int id, const char *me, const char *who, const char *ft_token, int y7, YList *files);
-void ext_yahoo_got_file7info(int id, const char *me, const char *who, const char *url, const char *fname, const char *ft_token);
-void ext_yahoo_send_file7info(int id, const char *me, const char *who, const char *ft_token);
-void ext_yahoo_ft7_send_file(int id, const char *me, const char *who, const char *filename, const char *token, const char *ft_token);
-
-/* service functions */
-int YahooFileAllow(WPARAM wParam,LPARAM lParam);
-int YahooFileDeny(WPARAM wParam, LPARAM lParam);
-int YahooFileResume(WPARAM wParam, LPARAM lParam);
-int YahooFileCancel(WPARAM wParam, LPARAM lParam);
-int YahooSendFile(WPARAM wParam, LPARAM lParam);
-int YahooRecvFile(WPARAM wParam, LPARAM lParam);
-
-#endif