diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-01 18:32:48 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-01 18:32:48 +0000 |
commit | 59c1677f44a7215754f155a20189572fb9dc4233 (patch) | |
tree | d5003c5239f2ed507e8b441c88fed207037eb3f1 | |
parent | ad86ea038a0b4803c7e3f1a82a293e2ee538e345 (diff) | |
download | xine-lib-59c1677f44a7215754f155a20189572fb9dc4233.tar.gz xine-lib-59c1677f44a7215754f155a20189572fb9dc4233.tar.bz2 |
method to get plugin and parameters help
CVS patchset: 5668
CVS date: 2003/11/01 18:32:48
-rw-r--r-- | include/xine.h.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 82d361403..c31b0506a 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.101 2003/10/28 16:59:03 mroi Exp $ + * $Id: xine.h.in,v 1.102 2003/11/01 18:32:48 miguelfreitas Exp $ * * public xine-lib (libxine) interface and documentation * @@ -710,6 +710,11 @@ typedef struct { * method to get params struct definition */ xine_post_api_descr_t * (*get_param_descr) (void); + + /* + * method to get plugin and parameters help + */ + char * (*get_help) (void); } xine_post_api_t; /* post parameter types */ |