summaryrefslogtreecommitdiff
path: root/protocols/Yahoo/src/webcam.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2016-10-11 21:05:12 +0300
committerGeorge Hazan <ghazan@miranda.im>2016-10-11 21:05:12 +0300
commitb0f3e30460fc26ef4fe59bc161b0fddd8eeb9a08 (patch)
treecbf0676fc37229beb184b1858efd0147c7e0935d /protocols/Yahoo/src/webcam.cpp
parentf07689fbf39405ef5a3e3dafb340c9c8f74897f6 (diff)
Yahoo & YahooGroups plugins moved to _deprecated
Diffstat (limited to 'protocols/Yahoo/src/webcam.cpp')
-rw-r--r--protocols/Yahoo/src/webcam.cpp57
1 files changed, 0 insertions, 57 deletions
diff --git a/protocols/Yahoo/src/webcam.cpp b/protocols/Yahoo/src/webcam.cpp
deleted file mode 100644
index 49888e7da0..0000000000
--- a/protocols/Yahoo/src/webcam.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * $Id: webcam.cpp 9228 2009-03-26 13:47:12Z ghazan $
- *
- * 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.
- */
-#include <time.h>
-#include <sys/stat.h>
-#include <malloc.h>
-#include <io.h>
-
-/*
- * Miranda headers
- */
-#include "stdafx.h"
-#include <m_protosvc.h>
-#include <m_langpack.h>
-#include <m_message.h>
-
-/* WEBCAM callbacks */
-void ext_yahoo_got_webcam_image(int, const char*, const unsigned char*, unsigned int, unsigned int, unsigned int)
-{
- LOG(("ext_yahoo_got_webcam_image"));
-}
-
-void ext_yahoo_webcam_viewer(int, const char*, int)
-{
- LOG(("ext_yahoo_webcam_viewer"));
-}
-
-void ext_yahoo_webcam_closed(int, const char*, int)
-{
- LOG(("ext_yahoo_webcam_closed"));
-}
-
-void ext_yahoo_webcam_data_request(int, int)
-{
- LOG(("ext_yahoo_webcam_data_request"));
-}
-
-void ext_yahoo_webcam_invite(int id, const char *me, const char *from)
-{
- LOG(("ext_yahoo_webcam_invite"));
-
- GETPROTOBYID(id)->ext_got_im(me, from, 0, Translate("[miranda] Got webcam invite. (not currently supported)"), 0, 0, 0, -1);
-}
-
-void ext_yahoo_webcam_invite_reply(int, const char*, const char*, int)
-{
- LOG(("ext_yahoo_webcam_invite_reply"));
-}