Difference for plugins/cfpython/include/cfpython_object_private.h from version 1.3 to 1.4


version 1.3 version 1.4
Line 52
 
Line 52
 static PyObject* Object_GetCursed(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetCursed(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetDamned(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetDamned(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetWeight(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetWeight(Crossfire_Object* whoptr, void* closure);
   static PyObject* Object_GetWeightLimit(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetAbove(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetAbove(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetBelow(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetBelow(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetInventory(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetInventory(Crossfire_Object* whoptr, void* closure);
Line 150
 
Line 151
 static int Object_SetAC(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetAC(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetWC(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetWC(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetWeight(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetWeight(Crossfire_Object* whoptr, PyObject* value, void* closure);
   static int Object_SetWeightLimit(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetDirection(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetDirection(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetFacing(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetFacing(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetGod(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetGod(Crossfire_Object* whoptr, PyObject* value, void* closure);
Line 219
 
Line 221
 static PyObject* Crossfire_Object_CheckArchInventory( Crossfire_Object* who, PyObject* args );  static PyObject* Crossfire_Object_CheckArchInventory( Crossfire_Object* who, PyObject* args );
 static PyObject* Crossfire_Object_GetOutOfMap(Crossfire_Object* whoptr, PyObject* args);  static PyObject* Crossfire_Object_GetOutOfMap(Crossfire_Object* whoptr, PyObject* args);
 static PyObject* Crossfire_Object_CreateInside(Crossfire_Object* who, PyObject* args);  static PyObject* Crossfire_Object_CreateInside(Crossfire_Object* who, PyObject* args);
   static PyObject* Crossfire_Object_InsertInto(Crossfire_Object* who, PyObject* args);
 static PyObject* Crossfire_Object_ReadKey(Crossfire_Object* who, PyObject* args);  static PyObject* Crossfire_Object_ReadKey(Crossfire_Object* who, PyObject* args);
 static PyObject* Crossfire_Object_WriteKey(Crossfire_Object* who, PyObject* args);  static PyObject* Crossfire_Object_WriteKey(Crossfire_Object* who, PyObject* args);
   
Line 257
 
Line 260
     { "Cursed",     (getter)Object_GetCursed,   (setter)Object_SetCursed, NULL, NULL },      { "Cursed",     (getter)Object_GetCursed,   (setter)Object_SetCursed, NULL, NULL },
     { "Damned",     (getter)Object_GetDamned,   (setter)Object_SetDamned, NULL, NULL },      { "Damned",     (getter)Object_GetDamned,   (setter)Object_SetDamned, NULL, NULL },
     { "Weight",     (getter)Object_GetWeight,   (setter)Object_SetWeight, NULL, NULL },      { "Weight",     (getter)Object_GetWeight,   (setter)Object_SetWeight, NULL, NULL },
       { "WeightLimit",(getter)Object_GetWeightLimit,(setter)Object_SetWeightLimit, NULL, NULL },
     { "Above",      (getter)Object_GetAbove,    NULL, NULL, NULL },      { "Above",      (getter)Object_GetAbove,    NULL, NULL, NULL },
     { "Below",      (getter)Object_GetBelow,    NULL, NULL, NULL },      { "Below",      (getter)Object_GetBelow,    NULL, NULL, NULL },
     { "Inventory",  (getter)Object_GetInventory,NULL, NULL, NULL },      { "Inventory",  (getter)Object_GetInventory,NULL, NULL, NULL },
Line 358
 
Line 362
     { "CheckArchInventory", (PyCFunction)Crossfire_Object_CheckArchInventory,METH_VARARGS},      { "CheckArchInventory", (PyCFunction)Crossfire_Object_CheckArchInventory,METH_VARARGS},
     { "OutOfMap",       (PyCFunction)Crossfire_Object_GetOutOfMap,  METH_VARARGS},      { "OutOfMap",       (PyCFunction)Crossfire_Object_GetOutOfMap,  METH_VARARGS},
     { "CreateObject",   (PyCFunction)Crossfire_Object_CreateInside, METH_VARARGS},      { "CreateObject",   (PyCFunction)Crossfire_Object_CreateInside, METH_VARARGS},
       { "InsertInto",     (PyCFunction)Crossfire_Object_InsertInto,   METH_VARARGS},
     { "ReadKey",        (PyCFunction)Crossfire_Object_ReadKey,      METH_VARARGS},      { "ReadKey",        (PyCFunction)Crossfire_Object_ReadKey,      METH_VARARGS},
     { "WriteKey",       (PyCFunction)Crossfire_Object_WriteKey,     METH_VARARGS},      { "WriteKey",       (PyCFunction)Crossfire_Object_WriteKey,     METH_VARARGS},
     {NULL, NULL, 0}      {NULL, NULL, 0}


Legend:
line(s) removed in v.1.3 
line(s) changed
 line(s) added in v.1.4

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:01