void gtkhash_properties_hash_init(struct page_s *page)
{
	gtkhash_hash_func_init_all(page->funcs);
	gtkhash_hash_file_init(&page->hash_file, page->funcs, page);
}
示例#2
0
文件: hash.c 项目: zaenal1234/gtkhash
void hash_init(void)
{
	gtkhash_hash_func_init_all(hash.funcs);
	gtkhash_hash_file_init(&hash_priv.file_data, hash.funcs, NULL);
}
示例#3
0
void gtkhash_properties_hash_init(struct page_s *page)
{
	gtkhash_hash_func_init_all(page->funcs);

	page->hfile = gtkhash_hash_file_new(page->funcs);
}