version 1.5 | | version 1.6 |
---|
| | |
static PyObject* Map_CreateObject(Crossfire_Map* map, PyObject* args); | | static PyObject* Map_CreateObject(Crossfire_Map* map, PyObject* args); |
static PyObject* Map_Check(Crossfire_Map* map, PyObject* args); | | static PyObject* Map_Check(Crossfire_Map* map, PyObject* args); |
static PyObject* Map_Next(Crossfire_Map* map, PyObject* args); | | static PyObject* Map_Next(Crossfire_Map* map, PyObject* args); |
| | static PyObject* Map_Insert(Crossfire_Map* map, PyObject* args); |
| | |
static int Map_InternalCompare(Crossfire_Map* left, Crossfire_Map* right); | | static int Map_InternalCompare(Crossfire_Map* left, Crossfire_Map* right); |
| | |
| | |
{ "CreateObject", (PyCFunction)Map_CreateObject, METH_VARARGS}, | | { "CreateObject", (PyCFunction)Map_CreateObject, METH_VARARGS}, |
{ "Check", (PyCFunction)Map_Check, METH_VARARGS}, | | { "Check", (PyCFunction)Map_Check, METH_VARARGS}, |
{ "Next", (PyCFunction)Map_Next, METH_VARARGS}, | | { "Next", (PyCFunction)Map_Next, METH_VARARGS}, |
| | { "Insert", (PyCFunction)Map_Insert, METH_VARARGS}, |
{NULL, NULL, 0} | | {NULL, NULL, 0} |
}; | | }; |
| | |