1 struct export_settings_text *gui_export_text_show();
2 
3 struct export_settings_text
4 {
5   struct export_settings settings;
6 
7   gboolean script_properties;
8   gboolean comments;
9   gboolean use_comma;
10   gboolean double_space;
11 
12   gboolean column_start;
13   gboolean column_end;
14   gboolean column_style;
15   gboolean column_name;
16   gboolean column_text;
17 };
18 
19 
20 
21