1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-17 01:16:16 -04:00

DOM: Added field ctx to the struct dom_node_list to easy get/set

the private data of an object.
This commit is contained in:
Witold Filipczyk 2007-06-12 11:47:56 +02:00 committed by Witold Filipczyk
parent a6eca1ae60
commit 829a953eb2

View File

@ -277,6 +277,7 @@ struct dom_node {
struct dom_node_list { struct dom_node_list {
size_t size; size_t size;
#ifdef CONFIG_ECMASCRIPT #ifdef CONFIG_ECMASCRIPT
void *ctx;
void *ecmascript_obj; void *ecmascript_obj;
#endif #endif
struct dom_node *entries[1]; struct dom_node *entries[1];