diff --git a/src/modules/dialog/dlg_cb.h b/src/modules/dialog/dlg_cb.h index 91064ee9e0f..86a85bb2e16 100644 --- a/src/modules/dialog/dlg_cb.h +++ b/src/modules/dialog/dlg_cb.h @@ -54,13 +54,13 @@ typedef int (*register_dlgcb_f)(struct dlg_cell* dlg, int cb_types, typedef int (*set_dlg_variable_f)( struct dlg_cell* dlg, str* key, str* val); -/* method to get a variable from a dialog */ +/* method to get a variable value reference from a dialog */ typedef str* (*get_dlg_varref_f)( struct dlg_cell* dlg, str* key); -/* method to get a variable from a dialog */ +/* method to get a variable value static-buffer duplicate from a dialog */ typedef int (*get_dlg_varval_f)( struct dlg_cell* dlg, str* key, str* val); -/* method to get a variable value duplicate from a dialog */ +/* method to get a variable value pkg-allocated duplicate from a dialog */ typedef int (*get_dlg_vardup_f)( struct dlg_cell* dlg, str* key, str* val);