summaryrefslogtreecommitdiff
path: root/src/glibext/gbinarycursor.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-11-11 18:47:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-11-11 18:47:15 (GMT)
commit04f9aebee5249624ccd4173989354cd93474376f (patch)
tree90c23774e2898be78a372650a6d6d219104196fb /src/glibext/gbinarycursor.h
parent77c68b54d4b2970a749eb4a658c32d2a16deacf6 (diff)
Extended the Python bindings.
Diffstat (limited to 'src/glibext/gbinarycursor.h')
-rw-r--r--src/glibext/gbinarycursor.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/glibext/gbinarycursor.h b/src/glibext/gbinarycursor.h
index defcb56..082d80f 100644
--- a/src/glibext/gbinarycursor.h
+++ b/src/glibext/gbinarycursor.h
@@ -57,6 +57,9 @@ GType g_binary_cursor_get_type(void);
/* Crée un nouveau suivi de positions dans un panneau. */
GLineCursor *g_binary_cursor_new(void);
+/* Indique la représentation de l'emplacement. */
+bool g_binary_cursor_is_raw(const GBinaryCursor *);
+
/* Précise la représentation de l'emplacement. */
void g_binary_cursor_set_raw(GBinaryCursor *, bool);
@@ -64,7 +67,7 @@ void g_binary_cursor_set_raw(GBinaryCursor *, bool);
void g_binary_cursor_update(GBinaryCursor *, const vmpa2t *);
/* Transmet la position de suivi dans un panneau de chargement. */
-void g_binary_cursor_get_info(const GBinaryCursor *, vmpa2t *);
+void g_binary_cursor_retrieve(const GBinaryCursor *, vmpa2t *);