
enchant_broker_free_dict 함수는 enchant_broker_dict_free 함수와 유사하게 dictionary를 삭제하는 함수입니다.
dictionary를 삭제하면 enchant_broker_free_dict 함수를 사용하여 dictionary를 삭제할 수 있습니다.
dictionary를 삭제한 후 다시 enchant_broker_free_dict 함수를 호출하여 dictionary를 삭제할 수는 없습니다.
dictionary를 삭제한 후 다시 dictionary를 사용하려면 enchant_broker_dict_create 함수를 호출하여 새로운 dictionary를 생성해야 합니다.
예를 들어,
#hostingforum.kr
c
enchant_broker_dict_t *dict = enchant_broker_dict_new(broker);
// dictionary를 사용한 후
enchant_broker_dict_free(broker, dict);
// dictionary를 다시 사용하려면
dict = enchant_broker_dict_new(broker);
2025-08-08 23:00