summaryrefslogtreecommitdiff
path: root/src/analysis/storage/serialize-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2021-02-20 09:16:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2021-02-20 09:16:15 (GMT)
commit170dc35d87e0a858c5400937a1ee2d2dde7f653a (patch)
tree833d9093c34e2f84ac167d74555741b7025a1a6f /src/analysis/storage/serialize-int.h
parent66b8d57f0c054065894ab3dd0f1640594013e441 (diff)
Change some prototypes for GLib objects storage.
Diffstat (limited to 'src/analysis/storage/serialize-int.h')
-rw-r--r--src/analysis/storage/serialize-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/storage/serialize-int.h b/src/analysis/storage/serialize-int.h
index 3a99b52..e7690d5 100644
--- a/src/analysis/storage/serialize-int.h
+++ b/src/analysis/storage/serialize-int.h
@@ -30,10 +30,10 @@
/* Charge un objet depuis une mémoire tampon. */
-typedef bool (* load_serializable_object_cb) (GSerializableObject *, GObjectStorage *, GTypeMemory *, packed_buffer *);
+typedef bool (* load_serializable_object_cb) (GSerializableObject *, GObjectStorage *, packed_buffer *);
/* Sauvegarde un objet dans une mémoire tampon. */
-typedef bool (* store_serializable_object_cb) (const GSerializableObject *, GObjectStorage *, GTypeMemory *, packed_buffer *);
+typedef bool (* store_serializable_object_cb) (const GSerializableObject *, GObjectStorage *, packed_buffer *);
/* Intermédiaire pour la mise en cache d'objet (interface) */