|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
有用过UF_ASSEM_ask_mc_data_of_compnt函数的吗?
我用这个函数时怎么返回值有时候对的有时候不对,为什么那
下面是代码
if(!UF_UI_select_with_single_dialog(cue,title,
UF_UI_SEL_SCOPE_ANY_IN_ASSEMBLY, init_proc, NULL,
&response, &object,cursor, &view))
{
tag_t ComponentInstance = UF_ASSEM_ask_inst_of_part_occ(object);
UF_ASSEM_mating_condition_t mc_data;
// UF_ASSEM_init_mc([$mc_data)]
logical mated;
int errorcode = UF_ASSEM_ask_mc_data_of_compnt(ComponentInstance , [$mated , &mc_data)]
if(errorcode != NULL)
{
UF_get_fail_message(errorcode , message);
AfxMessageBox(message);
} |
|