|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
我想用UG18.0中的UF_ASSEM_ask_mc_data_of_compnt(...)函数,导出组件的配合约束信息,在VC++6.0中用外部模式应用程序调用此函数时,编译时无错误,调试时出现“libufun.dll access violation" 错误,请问是什么原因?
在UG的帮助文档中为什么也找不到此函数?
=====以下是部分源程序==
UF_ASSEM_ask_component_data(child_part_occs, part_name, refset_name,instance_name, origin, csys_matrix, transform);
cout << "art Name is ";
cout << part_name << endl;
cout << "-------------instance_name is ";
cout << instance_name << endl;
logical * mated=NULL;
UF_ASSEM_mating_condition_p_t mc_data;
int nResult=0;
nResult=UF_ASSEM_ask_mc_data_of_compnt(child_part_occs, mated, mc_data);
tag_t * mated_component=NULL;
int * n_mated_components=NULL;
nResult=UF_ASSEM_ask_comps_mated_to_me(child_part_occs, [$mated_component, n_mated_components)] |
|