Home | History | Annotate | Download | only in ui

Lines Matching defs:UI_STRING

284    the reader take a UI_STRING.
287 /* The UI_STRING type is the data structure that contains all the needed info
290 typedef struct ui_string_st UI_STRING;
291 DECLARE_STACK_OF(UI_STRING)
309 int UI_method_set_writer(UI_METHOD *method, int (*writer)(UI *ui, UI_STRING *uis));
311 int UI_method_set_reader(UI_METHOD *method, int (*reader)(UI *ui, UI_STRING *uis));
315 int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*);
317 int (*UI_method_get_reader(UI_METHOD *method))(UI*,UI_STRING*);
322 data from a UI_STRING. */
324 /* Return type of the UI_STRING */
325 enum UI_string_types UI_get_string_type(UI_STRING *uis);
326 /* Return input flags of the UI_STRING */
327 int UI_get_input_flags(UI_STRING *uis);
329 const char *UI_get0_output_string(UI_STRING *uis);
331 const char *UI_get0_action_string(UI_STRING *uis);
333 const char *UI_get0_result_string(UI_STRING *uis);
335 const char *UI_get0_test_string(UI_STRING *uis);
337 int UI_get_result_minsize(UI_STRING *uis);
339 int UI_get_result_maxsize(UI_STRING *uis);
340 /* Set the result of a UI_STRING. */
341 int UI_set_result(UI *ui, UI_STRING *uis, const char *result);