diff options
| author | Johan Dahlin <johan@gnome.org> | 2008-07-27 09:00:06 +0000 |
|---|---|---|
| committer | Johan Dahlin <johan@src.gnome.org> | 2008-07-27 09:00:06 +0000 |
| commit | 28cc14391b52dcbef2e148dcc985b2803623234d (patch) | |
| tree | b32b6503d4908b8742d74b8040954d273011e592 /gobject/pygpointer.h | |
| parent | 6fafcbb5c9492c0f1c9022389107b7955d9b9318 (diff) | |
| download | pygobject-28cc14391b52dcbef2e148dcc985b2803623234d.tar.gz pygobject-28cc14391b52dcbef2e148dcc985b2803623234d.tar.xz pygobject-28cc14391b52dcbef2e148dcc985b2803623234d.zip | |
Split out quark and type registration to the respective implementation
2008-07-27 Johan Dahlin <johan@gnome.org>
* gobject/Makefile.am:
* gobject/gobjectmodule.c (init_gobject):
* gobject/pygboxed.c (pygobject_boxed_register_types):
* gobject/pygboxed.h:
* gobject/pygenum.c (pygobject_enum_register_types):
* gobject/pygenum.h:
* gobject/pygflags.c (pygobject_flags_register_types):
* gobject/pygflags.h:
* gobject/pygpointer.c (pygobject_pointer_register_types):
* gobject/pygpointer.h:
Split out quark and type registration to the respective
implementation source files, add headers.
svn path=/trunk/; revision=880
Diffstat (limited to 'gobject/pygpointer.h')
| -rw-r--r-- | gobject/pygpointer.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gobject/pygpointer.h b/gobject/pygpointer.h new file mode 100644 index 0000000..5e16873 --- /dev/null +++ b/gobject/pygpointer.h @@ -0,0 +1,27 @@ +/* -*- Mode: C; c-basic-offset: 4 -*- + * pygtk- Python bindings for the GTK toolkit. + * Copyright (C) 1998-2003 James Henstridge + * 2004-2008 Johan Dahlin + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + */ + +#ifndef __PYGOBJECT_POINTER_H__ +#define __PYGOBJECT_POINTER_H__ + +void pygobject_pointer_register_types(PyObject *d); + +#endif /* __PYGOBJECT_POINTER_H__ */ |
