diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 8c3afedc9..79edf5138 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.73 2003/04/06 22:56:16 guenter Exp $ + * $Id: xine.h.in,v 1.74 2003/04/06 23:58:18 miguelfreitas Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1277,14 +1277,20 @@ typedef struct { /* See XINE_MSG_xxx for defined types. */ int type; - /* some message types have additional information parameters */ + /* defined types are provided with a standard explanation. + * note: zero means no explanation. + */ + int explanation; /* add to struct address to get a valid (char *) */ + + /* parameters are zero terminated strings */ int num_parameters; + int parameters; /* add to struct address to get a valid (char *) */ - /* where messages are stored, will be longer + /* where messages are stored, will be longer * * this field begins with the message text itself (\0-terminated), * followed by (optional) \0-terminated parameter strings - * the end marker is \0 \0 + * the end marker is \0 \0 */ char messages[1]; } xine_ui_message_data_t; |