summaryrefslogtreecommitdiff
path: root/src/analysis/types/basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/types/basic.c')
-rw-r--r--src/analysis/types/basic.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/analysis/types/basic.c b/src/analysis/types/basic.c
index 3932ce4..e72ee95 100644
--- a/src/analysis/types/basic.c
+++ b/src/analysis/types/basic.c
@@ -62,10 +62,10 @@ static void g_basic_type_dispose(GBasicType *);
static void g_basic_type_finalize(GBasicType *);
/* Charge un objet depuis une mémoire tampon. */
-static bool g_basic_type_load(GBasicType *, GObjectStorage *, packed_buffer *);
+static bool g_basic_type_load(GBasicType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool g_basic_type_store(const GBasicType *, GObjectStorage *, packed_buffer *);
+static bool g_basic_type_store(const GBasicType *, GObjectStorage *, packed_buffer_t *);
/* Calcule une empreinte pour un type de données. */
static guint g_basic_type_hash(const GBasicType *);
@@ -212,7 +212,7 @@ GDataType *g_basic_type_new(BaseType type)
* *
******************************************************************************/
-static bool g_basic_type_load(GBasicType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_basic_type_load(GBasicType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
uleb128_t value; /* Valeur ULEB128 à charger */
@@ -244,7 +244,7 @@ static bool g_basic_type_load(GBasicType *type, GObjectStorage *storage, packed_
* *
******************************************************************************/
-static bool g_basic_type_store(const GBasicType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_basic_type_store(const GBasicType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */