diff options
Diffstat (limited to 'plugins/pychrysalide/analysis/storage')
| -rw-r--r-- | plugins/pychrysalide/analysis/storage/serialize.c | 12 | ||||
| -rw-r--r-- | plugins/pychrysalide/analysis/storage/storage.c | 4 | ||||
| -rw-r--r-- | plugins/pychrysalide/analysis/storage/tpmem.c | 4 | 
3 files changed, 10 insertions, 10 deletions
| diff --git a/plugins/pychrysalide/analysis/storage/serialize.c b/plugins/pychrysalide/analysis/storage/serialize.c index 6e1dd41..40fcef7 100644 --- a/plugins/pychrysalide/analysis/storage/serialize.c +++ b/plugins/pychrysalide/analysis/storage/serialize.c @@ -45,10 +45,10 @@  static void py_serializable_object_interface_init(GSerializableObjectIface *, gpointer *);  /* Charge un objet depuis une mémoire tampon. */ -static bool py_serializable_object_load_wrapper(GSerializableObject *, GObjectStorage *, packed_buffer *); +static bool py_serializable_object_load_wrapper(GSerializableObject *, GObjectStorage *, packed_buffer_t *);  /* Sauvegarde un objet dans une mémoire tampon. */ -static bool py_serializable_object_store_wrapper(const GSerializableObject *, GObjectStorage *, packed_buffer *); +static bool py_serializable_object_store_wrapper(const GSerializableObject *, GObjectStorage *, packed_buffer_t *); @@ -117,7 +117,7 @@ static void py_serializable_object_interface_init(GSerializableObjectIface *ifac  *                                                                             *  ******************************************************************************/ -static bool py_serializable_object_load_wrapper(GSerializableObject *object, GObjectStorage *storage, packed_buffer *pbuf) +static bool py_serializable_object_load_wrapper(GSerializableObject *object, GObjectStorage *storage, packed_buffer_t *pbuf)  {      bool result;                            /* Bilan à retourner           */      PyGILState_STATE gstate;                /* Sauvegarde d'environnement  */ @@ -193,7 +193,7 @@ static bool py_serializable_object_load_wrapper(GSerializableObject *object, GOb  *                                                                             *  ******************************************************************************/ -static bool py_serializable_object_store_wrapper(const GSerializableObject *object, GObjectStorage *storage, packed_buffer *pbuf) +static bool py_serializable_object_store_wrapper(const GSerializableObject *object, GObjectStorage *storage, packed_buffer_t *pbuf)  {      bool result;                            /* Bilan à retourner           */      PyGILState_STATE gstate;                /* Sauvegarde d'environnement  */ @@ -278,7 +278,7 @@ static bool py_serializable_object_load(PyObject *self, PyObject *args)  {      PyObject *result;                       /* Bilan à retourner           */      GObjectStorage *storage;                /* Conservateur à manipuler    */ -    packed_buffer *pbuf;                    /* Tampon de données à employer*/ +    packed_buffer_t *pbuf;                  /* Tampon de données à employer*/      int ret;                                /* Bilan de lecture des args.  */      GSerializableObject *object;            /* Version native              */      bool status;                            /* Bilan de l'opération        */ @@ -330,7 +330,7 @@ static bool py_serializable_object_store(PyObject *self, PyObject *args)  {      PyObject *result;                       /* Bilan à retourner           */      GObjectStorage *storage;                /* Conservateur à manipuler    */ -    packed_buffer *pbuf;                    /* Tampon de données à employer*/ +    packed_buffer_t *pbuf;                  /* Tampon de données à employer*/      int ret;                                /* Bilan de lecture des args.  */      GSerializableObject *object;            /* Version native              */      bool status;                            /* Bilan de l'opération        */ diff --git a/plugins/pychrysalide/analysis/storage/storage.c b/plugins/pychrysalide/analysis/storage/storage.c index 1ebcc62..107980e 100644 --- a/plugins/pychrysalide/analysis/storage/storage.c +++ b/plugins/pychrysalide/analysis/storage/storage.c @@ -321,7 +321,7 @@ static PyObject *py_object_storage_unpack_object(PyObject *self, PyObject *args)  {      PyObject *result;                       /* Bilan à retourner           */      const char *name;                       /* Désignation de groupe       */ -    packed_buffer *pbuf;                    /* Tampon de données à employer*/ +    packed_buffer_t *pbuf;                  /* Tampon de données à employer*/      int ret;                                /* Bilan de lecture des args.  */      GObjectStorage *storage;                /* Mécanismes natifs           */      GSerializableObject *object;            /* Objet reconstruit ou NULL   */ @@ -435,7 +435,7 @@ static PyObject *py_object_storage_pack_object(PyObject *self, PyObject *args)      PyObject *result;                       /* Emplacement à retourner     */      const char *name;                       /* Désignation de groupe       */      GSerializableObject *object;            /* Objet à traiter             */ -    packed_buffer *pbuf;                    /* Tampon de données à employer*/ +    packed_buffer_t *pbuf;                  /* Tampon de données à employer*/      int ret;                                /* Bilan de lecture des args.  */      GObjectStorage *storage;                /* Mécanismes natifs           */      bool status;                            /* Bilan de l'opération        */ diff --git a/plugins/pychrysalide/analysis/storage/tpmem.c b/plugins/pychrysalide/analysis/storage/tpmem.c index 2cf659f..8df20b2 100644 --- a/plugins/pychrysalide/analysis/storage/tpmem.c +++ b/plugins/pychrysalide/analysis/storage/tpmem.c @@ -241,7 +241,7 @@ static PyObject *py_type_memory_read_types(PyObject *self, PyObject *args)  static PyObject *py_type_memory_create_object(PyObject *self, PyObject *args)  {      PyObject *result;                       /* Instance à retourner        */ -    packed_buffer *pbuf;                    /* Tampon à consulter          */ +    packed_buffer_t *pbuf;                  /* Tampon à consulter          */      int ret;                                /* Bilan de lecture des args.  */      GTypeMemory *tpmem;                     /* Mémorisation native         */      GObject *obj;                           /* Instance retournée          */ @@ -290,7 +290,7 @@ static PyObject *py_type_memory_store_object_gtype(PyObject *self, PyObject *arg  {      PyObject *result;                       /* Bilan à retourner           */      GObject *obj;                           /* Instance à traiter          */ -    packed_buffer *pbuf;                    /* Tampon à consulter          */ +    packed_buffer_t *pbuf;                  /* Tampon à consulter          */      int ret;                                /* Bilan de lecture des args.  */      GTypeMemory *tpmem;                     /* Mémorisation native         */      bool status;                            /* Bilan de l'opération        */ | 
