introspection: Skip some C-only structures

The ParamSpec sub-classes we define are meant to be used only from the C
API, as high-level languages completely ignore them.

The ClutterStageWindow interface is an internal type that escaped into
the public headers; all its methods are private, but we cannot remove
the type until we break for 2.0.
This commit is contained in:
Emmanuele Bassi
2010-12-10 17:15:39 +00:00
parent d5a4183047
commit ae4e06d8c4
4 changed files with 12 additions and 12 deletions

View File

@ -11,7 +11,7 @@ G_BEGIN_DECLS
#define CLUTTER_STAGE_WINDOW_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), CLUTTER_TYPE_STAGE_WINDOW, ClutterStageWindowIface))
/**
* ClutterStageWindow:
* ClutterStageWindow: (skip)
*
* <structname>ClutterStageWindow</structname> is an opaque structure
* whose members should not be accessed directly
@ -22,7 +22,7 @@ typedef struct _ClutterStageWindow ClutterStageWindow; /* dummy */
typedef struct _ClutterStageWindowIface ClutterStageWindowIface;
/**
* ClutterStageWindowIface:
* ClutterStageWindowIface: (skip)
*
* The interface implemented by backends for stage windows
*