summaryrefslogtreecommitdiff
path: root/src/glibext/glinecursor-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-14 11:48:54 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-14 11:48:54 (GMT)
commitbea3337108fa5b59b8f6fdbe016d5ed6a6300bc6 (patch)
tree517abf46e76b2a6cc8ddb3ac2dec5ffacc28a128 /src/glibext/glinecursor-int.h
parente0af5dc9c01a5b9649c68ec63109ba98b6843329 (diff)
Begun to switch to abstract locations in internal rendering buffers.
Diffstat (limited to 'src/glibext/glinecursor-int.h')
-rw-r--r--src/glibext/glinecursor-int.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/glibext/glinecursor-int.h b/src/glibext/glinecursor-int.h
index 411b072..26e5143 100644
--- a/src/glibext/glinecursor-int.h
+++ b/src/glibext/glinecursor-int.h
@@ -29,6 +29,10 @@
+/* Compare deux suivis d'emplacements. */
+typedef int (* compare_cursor_fc) (const GLineCursor *, const GLineCursor *);
+
+
/* Suivi de positions dans un panneau de chargement (instance) */
struct _GLineCursor
{
@@ -41,6 +45,8 @@ struct _GLineCursorClass
{
GObjectClass parent; /* A laisser en premier */
+ compare_cursor_fc compare; /* Comparaison d'emplacements */
+
};