summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/render/box.h b/render/box.h
index 4faaef19a..dfb0a2603 100644
--- a/render/box.h
+++ b/render/box.h
@@ -88,7 +88,19 @@ struct object_params {
char* codetype;
char* codebase;
char* classid;
- char* paramds; /* very likely to change */
+ struct plugin_params* params;
+ /* not a parameter, but stored here for convenience */
+ char* basehref;
+ char* filename;
+};
+
+struct plugin_params {
+
+ char* name;
+ char* value;
+ char* type;
+ char* valuetype;
+ struct plugin_params* next;
};
struct box {
@@ -116,7 +128,7 @@ struct box {
struct gui_gadget* gadget;
struct content* object; /* usually an image */
struct object_params *object_params;
- void *object_state; /* state of any object */
+ void* object_state; /* state of any object */
};
struct form