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

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

PyObject* gcompris_new_pyGcomprisBoardObject(GcomprisBoard* aboard);

typedef struct{
  PyObject_HEAD
  GcomprisBoard* cdata;
} pyGcomprisBoardObject;

#endif