X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdictionary.h;h=18bf3f781081a14fc23fe2d3568efa1e96b31a9c;hb=ca259adce7a069f58545de7511e17d73c9e0a868;hp=bb14f52ebef0fe7560ddab190693f75be8b6457f;hpb=5a0b0d607efde2ab3a47d0d9c9fc62128a3156c1;p=pspp diff --git a/src/data/dictionary.h b/src/data/dictionary.h index bb14f52ebe..18bf3f7810 100644 --- a/src/data/dictionary.h +++ b/src/data/dictionary.h @@ -157,12 +157,18 @@ struct dict_callbacks void (*weight_changed) (struct dictionary *, int, void *); void (*filter_changed) (struct dictionary *, int, void *); void (*split_changed) (struct dictionary *, void *); + void (*var_display_width_changed) (struct dictionary *, int, void *); }; void dict_set_callbacks (struct dictionary *, const struct dict_callbacks *, void *); void dict_copy_callbacks (struct dictionary *, const struct dictionary *); +void dict_set_change_callback (struct dictionary *d, + void (*changed) (struct dictionary *, void*), + void *data); + + /* Debug use only. */ void dict_dump (const struct dictionary *);