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.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/format/strsym.c b/src/format/strsym.c
index aedd779..c352a0e 100644
--- a/src/format/strsym.c
+++ b/src/format/strsym.c
@@ -33,7 +33,7 @@
#include "symbol-int.h"
#include "../arch/operands/feeder-int.h"
#include "../common/alloc.h"
-#include "../gtkext/gtkblockdisplay.h"
+#include "../core/columns.h"
@@ -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 *);
@@ -182,8 +182,8 @@ static void g_string_symbol_feeder_interface_init(GProxyFeederInterface *iface)
iface->print = (print_proxy_feeder_fc)g_string_symbol_print;
- iface->unserialize = (unserialize_proxy_feeder_fc)g_string_symbol_unserialize;
- iface->serialize = (serialize_proxy_feeder_fc)g_string_symbol_serialize;
+ //iface->unserialize = (unserialize_proxy_feeder_fc)g_string_symbol_unserialize;
+ //iface->serialize = (serialize_proxy_feeder_fc)g_string_symbol_serialize;
}
@@ -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 */