函数
GLibTreenew_with_data
声明 [源]
GTree*
g_tree_new_with_data (
GCompareDataFunc key_compare_func,
gpointer key_compare_data
)
参数
key_compare_func
-
类型:
GCompareDataFunc
Qsort()-风格比较函数。
key_compare_data
-
类型:
gpointer
传递给比较函数的数据。
此参数可以为 NULL
。数据由函数的调用者拥有。
返回值
类型: GTree
新分配的GTree
。
函数的调用者将拥有数据,并负责释放它。 |