Difference for plugins/cfpython/include/cfpython_object_private.h from version 1.11 to 1.12


version 1.11 version 1.12
Line 127
 
Line 127
 static PyObject* Object_GetValue(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetValue(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetArchName(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetArchName(Crossfire_Object* whoptr, void* closure);
 static PyObject* Object_GetArchetype(Crossfire_Object* whoptr, void* closure);  static PyObject* Object_GetArchetype(Crossfire_Object* whoptr, void* closure);
   static PyObject* Object_GetNoSave(Crossfire_Object* whoptr, void* closure);
   static PyObject* Object_GetExists(Crossfire_Object* whoptr, void* closure);
   
 static int Object_SetMessage(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetMessage(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetName(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetName(Crossfire_Object* whoptr, PyObject* value, void* closure);
Line 196
 
Line 198
 static int Object_SetMakeInvisible(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetMakeInvisible(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetValue(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetValue(Crossfire_Object* whoptr, PyObject* value, void* closure);
 static int Object_SetFace(Crossfire_Object* whoptr, PyObject* value, void* closure);  static int Object_SetFace(Crossfire_Object* whoptr, PyObject* value, void* closure);
   static int Object_SetNoSave(Crossfire_Object* whoptr, PyObject* value, void* closure);
   
   
 static PyObject* Crossfire_Object_Remove( Crossfire_Object* who, PyObject* args );  static PyObject* Crossfire_Object_Remove( Crossfire_Object* who, PyObject* args );
 static PyObject* Crossfire_Object_Apply( Crossfire_Object* who, PyObject* args );  static PyObject* Crossfire_Object_Apply( Crossfire_Object* who, PyObject* args );
Line 338
 
Line 342
     { "Value",          (getter)Object_GetValue,        (setter)Object_SetValue ,NULL, NULL },      { "Value",          (getter)Object_GetValue,        (setter)Object_SetValue ,NULL, NULL },
     { "ArchName",       (getter)Object_GetArchName,     NULL ,NULL, NULL },      { "ArchName",       (getter)Object_GetArchName,     NULL ,NULL, NULL },
     { "Archetype",      (getter)Object_GetArchetype,    NULL ,NULL, NULL },      { "Archetype",      (getter)Object_GetArchetype,    NULL ,NULL, NULL },
       { "Exists",         (getter)Object_GetExists,       NULL ,NULL, NULL },
       { "NoSave",         (getter)Object_GetNoSave,       (setter)Object_SetNoSave, NULL, NULL },
     { NULL, NULL, NULL, NULL, NULL }      { NULL, NULL, NULL, NULL, NULL }
 };  };
   


Legend:
line(s) removed in v.1.11 
line(s) changed
 line(s) added in v.1.12

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