Removing gstreamer plugin
[profile/ivi/pocketsphinx.git] / python / bogus_pygobject.h
1 /* -*- c-basic-offset:4; indent-tabs-mode: nil -*- */
2 /**
3  * @file bogus_pygobject.h
4  * @brief Bogus header file to avoid having to depend on PyGTK.
5  */
6 #ifndef __BOGUS_PYGOBJECT_H__
7 #define __BOGUS_PYGOBJECT_H__
8
9 #include "Python.h"
10
11 typedef struct {
12     PyObject_HEAD
13     void * boxed;
14     unsigned long gtype;
15     int free_on_dealloc;
16 } PyGBoxed;
17
18 typedef struct {
19     PyObject_HEAD
20     void *pointer;
21     unsigned long gtype;
22 } PyGPointer;
23
24 #endif /* __BOGUS_PYGOBJECT_H__ */