mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 22:16:16 +01:00
Add prototype for g_completion_complete_utf8().
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org> * glib/gcompletion.h: Add prototype for g_completion_complete_utf8(). * tests/completion-test.c: #include <string.h>
This commit is contained in:
parent
5889997512
commit
bbf110839c
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
|
||||||
|
|
||||||
|
* tests/completion-test.c: #include <string.h>
|
||||||
|
|
||||||
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add g_completion_complete_utf8.
|
* glib/glib.def: Add g_completion_complete_utf8.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
|
||||||
|
|
||||||
|
* tests/completion-test.c: #include <string.h>
|
||||||
|
|
||||||
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add g_completion_complete_utf8.
|
* glib/glib.def: Add g_completion_complete_utf8.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
|
||||||
|
|
||||||
|
* tests/completion-test.c: #include <string.h>
|
||||||
|
|
||||||
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add g_completion_complete_utf8.
|
* glib/glib.def: Add g_completion_complete_utf8.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
|
||||||
|
|
||||||
|
* tests/completion-test.c: #include <string.h>
|
||||||
|
|
||||||
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add g_completion_complete_utf8.
|
* glib/glib.def: Add g_completion_complete_utf8.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
|
||||||
|
|
||||||
|
* tests/completion-test.c: #include <string.h>
|
||||||
|
|
||||||
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add g_completion_complete_utf8.
|
* glib/glib.def: Add g_completion_complete_utf8.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Wed Feb 4 17:58:51 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* glib/gcompletion.h: Add prototype for g_completion_complete_utf8().
|
||||||
|
|
||||||
|
* tests/completion-test.c: #include <string.h>
|
||||||
|
|
||||||
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
2004-02-05 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* glib/glib.def: Add g_completion_complete_utf8.
|
* glib/glib.def: Add g_completion_complete_utf8.
|
||||||
|
@ -52,18 +52,21 @@ struct _GCompletion
|
|||||||
GCompletionStrncmpFunc strncmp_func;
|
GCompletionStrncmpFunc strncmp_func;
|
||||||
};
|
};
|
||||||
|
|
||||||
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);
|
||||||
void g_completion_set_compare (GCompletion *cmp,
|
GList* g_completion_complete_utf8 (GCompletion *cmp,
|
||||||
GCompletionStrncmpFunc strncmp_func);
|
const gchar* prefix,
|
||||||
void g_completion_free (GCompletion* cmp);
|
gchar** new_prefix);
|
||||||
|
void g_completion_set_compare (GCompletion *cmp,
|
||||||
|
GCompletionStrncmpFunc strncmp_func);
|
||||||
|
void g_completion_free (GCompletion* cmp);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
@ -23,7 +23,9 @@
|
|||||||
* files for a list of changes. These files are distributed with
|
* files for a list of changes. These files are distributed with
|
||||||
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
||||||
*/
|
*/
|
||||||
#include <glib.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "glib.h"
|
||||||
|
|
||||||
int main (int argc, char *argv[])
|
int main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user