|
From: <ove...@us...> - 2007-03-26 09:51:22
|
Revision: 223
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=223&view=rev
Author: overture
Date: 2007-03-26 02:25:41 -0700 (Mon, 26 Mar 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/plugins/IPTVPlugin/SnapperInterface.cs
Modified: trunk/plugins/IPTVPlugin/SnapperInterface.cs
===================================================================
--- trunk/plugins/IPTVPlugin/SnapperInterface.cs 2007-03-25 20:46:35 UTC (rev 222)
+++ trunk/plugins/IPTVPlugin/SnapperInterface.cs 2007-03-26 09:25:41 UTC (rev 223)
@@ -10,11 +10,34 @@
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>decimal with version number</returns>
+ decimal Version();
}
#endregion
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|