~ubuntu-branches/ubuntu/trusty/gcompris/trusty

« back to all changes in this revision

Viewing changes to src/boards/py-gcompris-profile.h

  • Committer: Bazaar Package Importer
  • Author(s): Yann Dirson
  • Date: 2006-12-15 23:08:17 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215230817-exr5ks1hd73s3tlk
Tags: 8.2.2-1
* New upstream bugfix release, fixes among other things the support for
  the version of gnucap shipped in etch.
* Add missing dependency on python-gtk2 (Closes: #396523).
* Removed reference to non-existent sound file from memory.c (upstream
  fix - impacts 8.2 as well).  
* Now suggests gnuchess, gnucap, and tuxpaint.
* Updated extended description for the main package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _PY_GCOMPRIS_PROFILE_H_
 
2
#define _PY_GCOMPRIS_PROFILE_H_
 
3
 
 
4
#include <Python.h>
 
5
#include "gcompris/gcompris.h"
 
6
 
 
7
PyObject* gcompris_new_pyGcomprisProfileObject(GcomprisProfile* profile);
 
8
 
 
9
typedef struct{
 
10
  PyObject_HEAD
 
11
  GcomprisProfile* cdata;
 
12
} pyGcomprisProfileObject;
 
13
 
 
14
PyObject* gcompris_new_pyGcomprisClassObject(GcomprisClass* class);
 
15
 
 
16
typedef struct{
 
17
  PyObject_HEAD
 
18
  GcomprisClass* cdata;
 
19
} pyGcomprisClassObject;
 
20
 
 
21
PyObject* gcompris_new_pyGcomprisGroupObject(GcomprisGroup* group);
 
22
 
 
23
typedef struct{
 
24
  PyObject_HEAD
 
25
  GcomprisGroup* cdata;
 
26
} pyGcomprisGroupObject;
 
27
 
 
28
 
 
29
PyObject* gcompris_new_pyGcomprisUserObject(GcomprisUser* user);
 
30
 
 
31
typedef struct{
 
32
  PyObject_HEAD
 
33
  GcomprisUser* cdata;
 
34
} pyGcomprisUserObject;
 
35
 
 
36
#endif