[tuxdroid-svn] r6002 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2009-12-19 13:52:13
|
Author: jerome Date: 2009-12-19 14:52:04 +0100 (Sat, 19 Dec 2009) New Revision: 6002 Added: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPNCommands.py Log: * Added first shot of IPNCommands. Added: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPNCommands.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPNCommands.py (rev 0) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPNCommands.py 2009-12-19 13:52:04 UTC (rev 6002) @@ -0,0 +1,40 @@ +'''This file is part of "TuxDroid plugin Skype". + * Copyright 2009, kysoh + * Author : Conan Jerome. + * eMail : jer...@ky... + * Site : http://www.kysoh.com/ + * + * "TuxDroid plugin Skype" 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.1 of + * the License, or (at your option) any later version. + * + * "TuxDroid plugin Skype" 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 "TuxDroid plugin Skype"; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. + *''' + +#First sent commands. +COMMAND_INCOMING = '0' +COMMAND_OUTGOING_USER = '1' +COMMAND_OUTGOING_INTERFACE = '2' + +#Common commnds. +COMMAND_TTS = '3' +WAIT_END_CALL = '4' +CLOSE_CALL = '5' +END = '6' + +#Incoming call commands. +GET_INCOMING_CALL_PARTNER = '7' +ACCEPT_INCOMING = '8' +REJECT_INCOMING = '9' + +#Outgoing call commands. +GET_CONTACTS_LIST = '10' \ No newline at end of file |