gcompletion.h | gcompletion.h | |||
---|---|---|---|---|
skipping to change at line 59 | skipping to change at line 59 | |||
struct _GCompletion | struct _GCompletion | |||
{ | { | |||
GList* items; | GList* items; | |||
GCompletionFunc func; | GCompletionFunc func; | |||
gchar* prefix; | gchar* prefix; | |||
GList* cache; | GList* cache; | |||
GCompletionStrncmpFunc strncmp_func; | GCompletionStrncmpFunc strncmp_func; | |||
}; | }; | |||
#ifndef G_DISABLE_DEPRECATED | ||||
GCompletion* g_completion_new (GCompletionFunc func); | GCompletion* g_completion_new (GCompletionFunc func); | |||
void g_completion_add_items (GCompletion* cmp, | void g_completion_add_items (GCompletion* cmp, | |||
GList* items); | GList* items); | |||
void g_completion_remove_items (GCompletion* cmp, | void g_completion_remove_items (GCompletion* cmp, | |||
GList* items); | GList* items); | |||
void g_completion_clear_items (GCompletion* cmp); | void g_completion_clear_items (GCompletion* cmp); | |||
GList* g_completion_complete (GCompletion* cmp, | GList* g_completion_complete (GCompletion* cmp, | |||
const gchar* prefix, | const gchar* prefix, | |||
gchar** new_prefix); | gchar** new_prefix); | |||
GList* g_completion_complete_utf8 (GCompletion *cmp, | GList* g_completion_complete_utf8 (GCompletion *cmp, | |||
const gchar* prefix, | const gchar* prefix, | |||
gchar** new_prefix); | gchar** new_prefix); | |||
void g_completion_set_compare (GCompletion *cmp, | void g_completion_set_compare (GCompletion *cmp, | |||
GCompletionStrncmpFunc strncmp_func ); | GCompletionStrncmpFunc strncmp_func ); | |||
void g_completion_free (GCompletion* cmp); | void g_completion_free (GCompletion* cmp); | |||
#endif | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* __G_COMPLETION_H__ */ | #endif /* __G_COMPLETION_H__ */ | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |