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

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

PyObject* gcompris_new_pyGcomprisBoardConfigObject(GcomprisBoardConf * boardconfig);

typedef struct{
  PyObject_HEAD
  GcomprisBoardConf* cdata;
} pyGcomprisBoardConfigObject;

#endif