summaryrefslogtreecommitdiff
path: root/src/format/strsym.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/strsym.c')
-rw-r--r--src/format/strsym.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format/strsym.c b/src/format/strsym.c
index aedd779..d5b9157 100644
--- a/src/format/strsym.c
+++ b/src/format/strsym.c
@@ -98,10 +98,10 @@ int g_string_symbol_compare(const GStrSymbol *, const GStrSymbol *);
void g_string_symbol_print(const GStrSymbol *, GBufferLine *);
/* Charge un fournisseur depuis une mémoire tampon. */
-bool g_string_symbol_unserialize(GStrSymbol *, GBinFormat *, packed_buffer *);
+bool g_string_symbol_unserialize(GStrSymbol *, GBinFormat *, packed_buffer_t *);
/* Sauvegarde un fournisseur dans une mémoire tampon. */
-bool g_string_symbol_serialize(const GStrSymbol *, packed_buffer *);
+bool g_string_symbol_serialize(const GStrSymbol *, packed_buffer_t *);
@@ -860,7 +860,7 @@ void g_string_symbol_print(const GStrSymbol *symbol, GBufferLine *line)
* *
******************************************************************************/
-bool g_string_symbol_unserialize(GStrSymbol *symbol, GBinFormat *format, packed_buffer *pbuf)
+bool g_string_symbol_unserialize(GStrSymbol *symbol, GBinFormat *format, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
vmpa2t addr; /* Adresse à cibler */
@@ -885,7 +885,7 @@ bool g_string_symbol_unserialize(GStrSymbol *symbol, GBinFormat *format, packed_
* *
******************************************************************************/
-bool g_string_symbol_serialize(const GStrSymbol *symbol, packed_buffer *pbuf)
+bool g_string_symbol_serialize(const GStrSymbol *symbol, packed_buffer_t *pbuf)
{
bool result; /* Bilan à retourner */
const mrange_t *range; /* Emplacement du symbole */