1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-20 20:54:47 -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,7 +277,8 @@ struct dom_node {
struct dom_node_list {
size_t size;
#ifdef CONFIG_ECMASCRIPT
void *ecmascript_obj;
void *ctx;
void *ecmascript_obj;
#endif
struct dom_node *entries[1];
};