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

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

PyObject* gcompris_new_pyGcomprisWordlistObject(GcomprisWordlist* wordlist);

typedef struct{
  PyObject_HEAD
  GcomprisWordlist* cdata;
} pyGcomprisWordlistObject;

#endif