summaryrefslogtreecommitdiff
path: root/src/analysis/types/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/types/array.c')
-rw-r--r--src/analysis/types/array.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/analysis/types/array.c b/src/analysis/types/array.c
index 5b51d62..e1e3a38 100644
--- a/src/analysis/types/array.c
+++ b/src/analysis/types/array.c
@@ -31,6 +31,7 @@
#include "../type-int.h"
#include "../../common/extstr.h"
+#include "../../common/leb128.h"
@@ -73,10 +74,10 @@ static void g_array_type_dispose(GArrayType *);
static void g_array_type_finalize(GArrayType *);
/* Charge un objet depuis une mémoire tampon. */
-static bool g_array_type_load(GArrayType *, GObjectStorage *, packed_buffer *);
+static bool g_array_type_load(GArrayType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-static bool g_array_type_store(const GArrayType *, GObjectStorage *, packed_buffer *);
+static bool g_array_type_store(const GArrayType *, GObjectStorage *, packed_buffer_t *);
/* Calcule une empreinte pour un type de données. */
static guint g_array_type_hash(const GArrayType *);
@@ -230,7 +231,7 @@ GDataType *g_array_type_new(GDataType *members)
* *
******************************************************************************/
-static bool g_array_type_load(GArrayType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_array_type_load(GArrayType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
bool numbered; /* Choix de la dimension */
@@ -288,7 +289,7 @@ static bool g_array_type_load(GArrayType *type, GObjectStorage *storage, packed_
* *
******************************************************************************/
-static bool g_array_type_store(const GArrayType *type, GObjectStorage *storage, packed_buffer *pbuf)
+static bool g_array_type_store(const GArrayType *type, GObjectStorage *storage, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
size_t len; /* Taille d'une chaîne */