void select_multi_feature(void)
{
int count=0,response;
tag_t **feature_tag=malloc(100*sizeof(tag_t));
char message[200]={""};
int i=0;
char feature_str[20];
tag_t tag_h=NULL_TAG;
UF_UI_select_feature(
"选择特征" ,/* <I>
Cue line message to display.
*/
NULL ,/* <I>
Must be NULL or castable to UF_UI_feat_sel_type_t*.
*/
&count ,/* <O>
Count features selected
*/
feature_tag ,/* <OF,len:count>
Allocated array of selected feature tags. After use
must be freed with UF_free
*/
&response /* <O>
response:
UF_UI_BACK
UF_UI_CANCEL
UF_UI_OK
*/
);