2015-05-18 12:24:26 -07:00
|
|
|
#ifndef __PYTHON_TYPES_H__
|
|
|
|
#define __PYTHON_TYPES_H__
|
|
|
|
|
|
|
|
#include <Python.h>
|
|
|
|
#include <tgl/tgl.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
tgl_peer_t peer;
|
|
|
|
} tgl_Peer;
|
|
|
|
|
2015-05-19 10:55:32 -07:00
|
|
|
PyObject * tgl_Peer_FromTglPeer(tgl_peer_t *peer);
|
2015-05-19 01:40:57 -07:00
|
|
|
|
2015-05-18 12:24:26 -07:00
|
|
|
#endif
|