summaryrefslogtreecommitdiff
path: root/src/glibext/gbinarycursor.c
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/glibext/gbinarycursor.c
parent1865cce4d51b9c7a6fb718f4e2c034a57365ad1b (diff)
Improve the code quality by renaming the type for packed buffers.
Diffstat (limited to 'src/glibext/gbinarycursor.c')
-rw-r--r--src/glibext/gbinarycursor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/glibext/gbinarycursor.c b/src/glibext/gbinarycursor.c
index 11ecddc..5308fdf 100644
--- a/src/glibext/gbinarycursor.c
+++ b/src/glibext/gbinarycursor.c
@@ -85,10 +85,10 @@ static void g_binary_cursor_show_status(const GBinaryCursor *, GtkStatusStack *,
/* Exporte la définition d'un emplacement dans un flux réseau. */
-static bool g_binary_cursor_serialize(const GBinaryCursor *, packed_buffer *);
+static bool g_binary_cursor_serialize(const GBinaryCursor *, packed_buffer_t *);
/* Importe la définition d'un emplacement depuis un flux réseau. */
-static bool g_binary_cursor_unserialize(GBinaryCursor *, packed_buffer *);
+static bool g_binary_cursor_unserialize(GBinaryCursor *, packed_buffer_t *);
@@ -496,7 +496,7 @@ void g_binary_cursor_retrieve(const GBinaryCursor *cursor, vmpa2t *addr)
* *
******************************************************************************/
-static bool g_binary_cursor_serialize(const GBinaryCursor *cursor, packed_buffer *pbuf)
+static bool g_binary_cursor_serialize(const GBinaryCursor *cursor, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
@@ -520,7 +520,7 @@ static bool g_binary_cursor_serialize(const GBinaryCursor *cursor, packed_buffer
* *
******************************************************************************/
-static bool g_binary_cursor_unserialize(GBinaryCursor *cursor, packed_buffer *pbuf)
+static bool g_binary_cursor_unserialize(GBinaryCursor *cursor, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */