Re: Usage of GTK+ headers
- From: Matthias Clasen <mclasen redhat com>
- To: "Banginwar, Rajesh" <rajesh banginwar intel com>
- Cc: gtk-devel-list gnome org, gtk-list gnome org
- Subject: Re: Usage of GTK+ headers
- Date: Wed, 12 Oct 2005 00:03:41 -0400
On Tue, 2005-10-11 at 15:00 -0700, Banginwar, Rajesh wrote:
> Hello,
>
> Many of the GTK+ libraries have one or more top level
> header files. E.g. Glib has glib.h, gdk-pixbuf has two gdk-data.h and
> gdk-pixbuf.h and so on… My question is about what applications
> typically use? Do they use just the top level header only? Or is it ok
> to use the specific header file as needed e.g. gtk/gtkstyle.h?
>
>
The indended use is to just include the toplevel header file, ie
#include <gtk/gtk.h>
or
#include <glib.h>
An exception from this rule are the stdio wrappers, for which you
explicitly have to
#include <glib/gprintf.h>
This is because glib.h is not supposed to pull in stdio.h.
All of this is documented in the API docs.
Matthias
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]