extern UFUNEXPORT int UF_ASSEM_ask_hidden_comps(
tag_t view ,/* <I>
The view you are seeking informaton on
*/
tag_p_t* components ,/* <OF,len:count>
The components which are erased in the view.
This array must be freed by the caller using UF_free.
*/
int* count /* <O>
The number of component tags in the array.
*/
);
UG中象这样的function很多,它返回一个动态数组。。。。。这个比链表好用的多
我想做一个类似的函数,从子程序返回一个动态数组,可是如果在子程序里面分配内存并生成了动态数组后,返回主程序后数组内容又没有了~!
如何才能象上面的一样从子程序返回动态数组呢?