From: <ove...@us...> - 2007-03-27 16:07:53
|
Revision: 239 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=239&view=rev Author: overture Date: 2007-03-27 09:07:52 -0700 (Tue, 27 Mar 2007) Log Message: ----------- Modified Paths: -------------- trunk/plugins/IPTVPlugin/SnapperInterface.cs Modified: trunk/plugins/IPTVPlugin/SnapperInterface.cs =================================================================== --- trunk/plugins/IPTVPlugin/SnapperInterface.cs 2007-03-27 15:57:10 UTC (rev 238) +++ trunk/plugins/IPTVPlugin/SnapperInterface.cs 2007-03-27 16:07:52 UTC (rev 239) @@ -10,12 +10,43 @@ public interface IMiniIPTVPlugin { /// <summary> - /// Should return a multi-dimensional array return in this order (string channelname, string channelDescription, string genre, string language, string country, string streamURL) + /// Should return CHANNEL INFO in a multi-dim array - returned in this order:- + /// [x,1] Channel Name + /// [x,2] Channel Description + /// [x,3] Genre + /// [x,4] Language + /// [x,5] Country + /// [x,6] Channel Stream URL + /// [x,7] Channel EPG + /// NOTE: where 'x' above = the ROW index of the multi-dim array. + /// NOTE: you must return Null when any of the above info is not available. /// </summary> - /// <returns>A multi-dimensional array</returns> + /// <returns>A multi-dimensional string array</returns> string[,] IPTVChannel(); + /// <summary> + /// Should return the name of the IPTV mini plugin AUTHOR. + /// </summary> + /// <returns>string with authors name</returns> string Author(); + /// <summary> + /// Should return a DESCRIPTION for the IPTV mini plugin. + /// </summary> + /// <returns>string with authors name</returns> + string Description(); + /// <summary> + /// Should return the current VERSION of the plugin. + /// </summary> + /// <returns>string with version number</returns> + string Version(); + /// <summary> + /// Should return the current PLUGIN NAME. + /// </summary> + /// <returns>string with version number</returns> string PluginName(); + /// <summary> + /// Should return the setup form for the minin IPTV plugin. + /// </summary> + /// <returns>Form</returns> Form IPTVPluginSetup(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |