~ubuntu-branches/ubuntu/oneiric/libpeas/oneiric

« back to all changes in this revision

Viewing changes to libpeas/peas-engine.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Martin Pitt, Oliver Sauder
  • Date: 2011-09-05 08:41:48 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: package-import@ubuntu.com-20110905084148-u4qhltt1ipo2frj9
Tags: 1.1.3-0ubuntu1
[ Martin Pitt ]
* New upstream release:
  - Link against pygobject 3. (LP: #839712)
  - Do not cast pointers to unsigned integers.
* Drop debian/patches/gint_is_not_gtype, upstream now.
* debian/control.in: Bump python-gobject-dev build dependency to >= 2.90 as
  per upstream configure.ac.
* debian/control.in: Move valac-0.12 to valac to use 0.14.

[ Oliver Sauder ]
* Added peas-gtk vapi file libpeas-gtk-1.0.vapi (LP: #825834) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 *
17
17
 *  You should have received a copy of the GNU Library General Public License
18
18
 *  along with this program; if not, write to the Free Software
19
 
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 */
21
21
 
22
22
#ifndef __PEAS_ENGINE_H__
57
57
  PeasEnginePrivate *priv;
58
58
};
59
59
 
 
60
/**
 
61
 * PeasEngineClass:
 
62
 * @parent_class: The parent class.
 
63
 * @load_plugin: Signal class handler for the #PeasEngine::load-plugin signal.
 
64
 * @unload_plugin: Signal class handler for the #PeasEngine::unload-plugin signal.
 
65
 *
 
66
 * Class structure for #PeasEngine.
 
67
 */
60
68
struct _PeasEngineClass {
61
69
  GObjectClass parent_class;
62
70
 
66
74
  void     (*unload_plugin)               (PeasEngine     *engine,
67
75
                                           PeasPluginInfo *info);
68
76
 
 
77
  /*< private >*/
69
78
  gpointer padding[8];
70
79
};
71
80