Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/boards/py-gcompris-properties.h
blob: 4fe9b27dfd9eadad1d0ecd3f79981015fe693504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _PY_GCOMPRIS_PROPERTIES_H_
#define _PY_GCOMPRIS_PROPERTIES_H_

#include <Python.h>
#include "gcompris/gcompris.h"

PyObject* gcompris_new_pyGcomprisPropertiesObject(GcomprisProperties* properties);

typedef struct{
  PyObject_HEAD
  GcomprisProperties* cdata;
} pyGcomprisPropertiesObject;

#endif