updated siplib

git-svn-id: https://svn.wxwidgets.org/svn/wx/sandbox/trunk/Phoenix@66132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-11-13 08:00:53 +00:00
parent 7b6b240efd
commit 1c9b633170
2 changed files with 10 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ extern "C" {
* Define the SIP version number. * Define the SIP version number.
*/ */
#define SIP_VERSION 0x040c00 #define SIP_VERSION 0x040c00
#define SIP_VERSION_STR "4.12-snapshot-eac351f5cca7" #define SIP_VERSION_STR "4.12-snapshot-24f170d5c2dd"
/* /*
@@ -298,6 +298,13 @@ typedef int sip_gilstate_t;
* Some convenient function pointers. * Some convenient function pointers.
*/ */
/*
* forward declare these structures
*/
struct _sipSimpleWrapper;
struct _sipTypeDef;
/* /*
* The operation an access function is being asked to perform. * The operation an access function is being asked to perform.
*/ */

View File

@@ -6016,8 +6016,8 @@ static int add_lazy_container_attrs(sipTypeDef *td, sipContainerDef *cod,
vd->vd_type = (vd_8->vd_is_static ? ClassVariable : InstanceVariable); vd->vd_type = (vd_8->vd_is_static ? ClassVariable : InstanceVariable);
vd->vd_name = vd_8->vd_name; vd->vd_name = vd_8->vd_name;
vd->vd_getter = (PyCFunction)vd_8->vd_getter; vd->vd_getter = (PyMethodDef *)vd_8->vd_getter;
vd->vd_setter = (PyCFunction)vd_8->vd_setter; vd->vd_setter = (PyMethodDef *)vd_8->vd_setter;
vd->vd_deleter = NULL; vd->vd_deleter = NULL;
vd->vd_docstring = NULL; vd->vd_docstring = NULL;