diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-11 13:52:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-11 13:52:01 +0000 |
commit | a15cd68f0412e1b211e746a2e4d5682e96f5a113 (patch) | |
tree | d09d41832621cfc07957dbbcd60077fdf96b7e66 /protocols/Yahoo/src/webcam.cpp | |
parent | 85bd008c039eb1d93894e94fba9d158a42a71a12 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@14911 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/webcam.cpp')
-rw-r--r-- | protocols/Yahoo/src/webcam.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/protocols/Yahoo/src/webcam.cpp b/protocols/Yahoo/src/webcam.cpp index b52bdcff68..49888e7da0 100644 --- a/protocols/Yahoo/src/webcam.cpp +++ b/protocols/Yahoo/src/webcam.cpp @@ -24,24 +24,22 @@ #include <m_message.h>
/* WEBCAM callbacks */
-void ext_yahoo_got_webcam_image(int id, const char *who,
- const unsigned char *image, unsigned int image_size, unsigned int real_size,
- unsigned int timestamp)
+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 id, const char *who, int connect)
+void ext_yahoo_webcam_viewer(int, const char*, int)
{
LOG(("ext_yahoo_webcam_viewer"));
}
-void ext_yahoo_webcam_closed(int id, const char *who, int reason)
+void ext_yahoo_webcam_closed(int, const char*, int)
{
LOG(("ext_yahoo_webcam_closed"));
}
-void ext_yahoo_webcam_data_request(int id, int send)
+void ext_yahoo_webcam_data_request(int, int)
{
LOG(("ext_yahoo_webcam_data_request"));
}
@@ -53,7 +51,7 @@ void ext_yahoo_webcam_invite(int id, const char *me, const char *from) 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 id, const char *me, const char *from, int accept)
+void ext_yahoo_webcam_invite_reply(int, const char*, const char*, int)
{
LOG(("ext_yahoo_webcam_invite_reply"));
}
|