|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
static void do_ugopen_api(void)
{
int num=0;
char* feat_type;
tag_t obj=null_tag;
tag_t disp_part=UF_PART_ask_display_part();
UF_OBJ_cycle_objs_in_part(disp_part,UF_feature_type,&obj);
while(obj!=null_tag)
{
num++;
UF_MODL_ask_feat_type(obj,&feat_type);
//UF_DISP_set_highlight(obj,1);
int error_code=0;
char* str = (char*)UF_allocate_memory(sizeof(unsigned int)+1,&error_code);
sprintf(str,"\n特征%d的id=%u,其类型为%s\n",num,obj,feat_type);
UF_UI_open_listing_window();
UF_UI_write_listing_window(str);
UF_free(str);
UF_OBJ_cycle_objs_in_part(disp_part,UF_feature_type,&obj);
}
} |
|