Skip to content

Commit

Permalink
dialog: updated comments for api functions to get dlg var value
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Sep 26, 2022
1 parent 13512f4 commit 8548aaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/dialog/dlg_cb.h
Expand Up @@ -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);

Expand Down

0 comments on commit 8548aaa

Please sign in to comment.