2
0
Fork 0

additions to actions.h

This commit is contained in:
Thomas Porzelt 2008-06-29 13:55:19 +02:00
commit 3afec4e04d
1 changed files with 12 additions and 1 deletions

View File

@ -29,8 +29,19 @@ struct action
union
{
option param;
struct
{
option_mark opt;
option newvalue;
} setting;
condition cond;
struct
{
action_func* func;
gpointer param;
} actionfunc;
} value;
action* next;