Add a little bit of padding.

Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>

        * glib/giochannel.h (struct _GIOChannel): Add a little bit
        of padding.

        * glib/gmain.h (struct _GSource): Add a little bit of padding.
This commit is contained in:
Owen Taylor 2002-02-23 20:08:45 +00:00 committed by Owen Taylor
parent 600f880935
commit 67ea9743a7
10 changed files with 62 additions and 0 deletions

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -1,3 +1,10 @@
Sat Feb 23 14:54:13 2002 Owen Taylor <otaylor@redhat.com>
* glib/giochannel.h (struct _GIOChannel): Add a little bit
of padding.
* glib/gmain.h (struct _GSource): Add a little bit of padding.
2002-02-21 Matthias Clasen <maclas@gmx.de>
* glib/gdebug.h: New header containing GTK_DEBUG-style debugging

View File

@ -127,6 +127,9 @@ struct _GIOChannel
guint is_readable : 1; /* Cached GIOFlag */
guint is_writeable : 1; /* ditto */
guint is_seekable : 1; /* ditto */
gpointer reserved1;
gpointer reserved2;
};
typedef gboolean (*GIOFunc) (GIOChannel *source,

View File

@ -52,6 +52,9 @@ struct _GSource
GSource *prev;
GSource *next;
gpointer reserved1;
gpointer reserved2;
};
struct _GSourceCallbackFuncs