Re: Hi, another question

Tor Lillqvist <[email protected]> Wed, 19 Mar 2003 02:42:11 +0000
Newsgroups gmane.comp.video.gimp.windows.devel
Message-ID <[email protected]>
ffxz writes:
 > there lots of errors about the functions undefined. They are:

 > gtk_text_tag_table_add_buffer

Do you mean _gtk_text_tag_table_add_buffer? The gtktexttagtable.h file
says:

/* INTERNAL private stuff - not even exported from the library on
 * many platforms
 */
void _gtk_text_tag_table_add_buffer    (GtkTextTagTable *table,
                                        gpointer         buffer);

so if Inti expects to be able to use _gtk_text_tag_table_add_buffer,
it is wrong.

 > gtk_window_get_skip_taskbar_hint

This was missing by mistake (the list of exported entry points from
the DLL is maintained by hand), and only recently added after a bug
report. Will be in GTK 2.2.2.

 > gtk_window_get_group

Again, this is really _gtk_window_get_group, and an internal GTK
function that should not be used by other software. Inti shouldn't try
to access it.

The two explanations above presumably holds for all the names in your
list. Either the name is actually prefixed with an underscore (meaning
the function is an GTK internal function that should not be used from
outside GTK), or it is not exported by mistake. You will have to
modify the Inti sources not to try to use these.

--tml