summaryrefslogtreecommitdiff
path: root/src/analysis/type.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/type.c')
-rw-r--r--src/analysis/type.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/analysis/type.c b/src/analysis/type.c
index e2547bd..8a24531 100644
--- a/src/analysis/type.c
+++ b/src/analysis/type.c
@@ -51,16 +51,16 @@ static void g_data_type_dispose(GDataType *);
static void g_data_type_finalize(GDataType *);
/* Charge un objet depuis une mémoire tampon. */
-static bool _g_data_type_load(GDataType *, GObjectStorage *, packed_buffer *);
+static bool _g_data_type_load(GDataType *, GObjectStorage *, packed_buffer_t *);
/* Charge un objet depuis une mémoire tampon. */
-static bool g_data_type_load(GDataType *, GObjectStorage *, packed_buffer *);
+static bool g_data_type_load(GDataType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool _g_data_type_store(const GDataType *, GObjectStorage *, packed_buffer *);
+static bool _g_data_type_store(const GDataType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool g_data_type_store(const GDataType *, GObjectStorage *, packed_buffer *);
+static bool g_data_type_store(const GDataType *, GObjectStorage *, packed_buffer_t *);
@@ -193,7 +193,7 @@ static void g_data_type_finalize(GDataType *type)
* *
******************************************************************************/
-static bool _g_data_type_load(GDataType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool _g_data_type_load(GDataType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
uleb128_t value; /* Valeur ULEB128 à charger */
@@ -248,7 +248,7 @@ static bool _g_data_type_load(GDataType *type, GObjectStorage *storage, packed_b
* *
******************************************************************************/
-static bool g_data_type_load(GDataType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_data_type_load(GDataType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
GDataTypeClass *class; /* Classe du type */
@@ -276,7 +276,7 @@ static bool g_data_type_load(GDataType *type, GObjectStorage *storage, packed_bu
* *
******************************************************************************/
-static bool _g_data_type_store(const GDataType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool _g_data_type_store(const GDataType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
type_obj_extra *extra; /* Données insérées à modifier */
@@ -328,7 +328,7 @@ static bool _g_data_type_store(const GDataType *type, GObjectStorage *storage, p
* *
******************************************************************************/
-static bool g_data_type_store(const GDataType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_data_type_store(const GDataType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
GDataTypeClass *class; /* Classe du type */