Mercurial > audlegacy
diff src/audacious/tuple_compiler.h @ 3810:e307e455aca0 trunk
Improved error handling. Now the error status and message are saved into evaluation context.
| author | Matti Hamalainen <ccr@tnsp.org> |
|---|---|
| date | Fri, 19 Oct 2007 16:13:17 +0300 |
| parents | 17fb5e598cfc |
| children | 047bf3ed21b2 1556939b6c80 |
line wrap: on
line diff
--- a/src/audacious/tuple_compiler.h Fri Oct 19 12:14:04 2007 +0300 +++ b/src/audacious/tuple_compiler.h Fri Oct 19 16:13:17 2007 +0300 @@ -88,6 +88,10 @@ gint nvariables, nfunctions, nexpressions; TupleEvalVar **variables; TupleEvalFunc **functions; + + /* Error context */ + gboolean iserror; + gchar *errmsg; } TupleEvalContext;
