Go to the source code of this file.
◆ MAPEXISTCHECK
#define MAPEXISTCHECK |
( |
|
map | ) |
|
Value: { \
if (!(
map) || ((
map)->valid == 0)) { \
PyErr_SetString(PyExc_ReferenceError, "Crossfire map no longer exists"); \
return NULL; \
} \
}
Definition at line 40 of file cfpython_map.h.
◆ MAPEXISTCHECK_INT
#define MAPEXISTCHECK_INT |
( |
|
map | ) |
|
Value: { \
if (!(
map) || ((
map)->valid == 0)) { \
PyErr_SetString(PyExc_ReferenceError, "Crossfire map no longer exists"); \
return -1; \
} \
}
Definition at line 47 of file cfpython_map.h.
◆ Crossfire_Map_wrap()
PyObject* Crossfire_Map_wrap |
( |
mapstruct * |
what | ) |
|
◆ Crossfire_MapType
PyTypeObject Crossfire_MapType |