summaryrefslogtreecommitdiff
path: root/src/analysis/type-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-06-01 22:32:50 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-06-01 22:32:50 (GMT)
commit9eab0a0903303d3c93872e7e4b6b1cb774b69b03 (patch)
treeae8594cae830118ca3a92ee60242490e58c14a9e /src/analysis/type-int.h
parent1865cce4d51b9c7a6fb718f4e2c034a57365ad1b (diff)
Improve the code quality by renaming the type for packed buffers.
Diffstat (limited to 'src/analysis/type-int.h')
-rw-r--r--src/analysis/type-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/type-int.h b/src/analysis/type-int.h
index d6c2588..6c77954 100644
--- a/src/analysis/type-int.h
+++ b/src/analysis/type-int.h
@@ -34,10 +34,10 @@
/* Charge un objet depuis une mémoire tampon. */
-typedef bool (* type_load_fc) (GDataType *, GObjectStorage *, packed_buffer *);
+typedef bool (* type_load_fc) (GDataType *, GObjectStorage *, packed_buffer_t *);
/* Sauvegarde un objet dans une mémoire tampon. */
-typedef bool (* type_store_fc) (const GDataType *, GObjectStorage *, packed_buffer *);
+typedef bool (* type_store_fc) (const GDataType *, GObjectStorage *, packed_buffer_t *);
/* Calcule une empreinte pour un type de données. */
typedef guint (* type_hash_fc) (const GDataType *);