summaryrefslogtreecommitdiff
path: root/src/glibext/glinecursor-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/glibext/glinecursor-int.h')
-rw-r--r--src/glibext/glinecursor-int.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/glibext/glinecursor-int.h b/src/glibext/glinecursor-int.h
index 18ec147..b6a0f19 100644
--- a/src/glibext/glinecursor-int.h
+++ b/src/glibext/glinecursor-int.h
@@ -54,14 +54,11 @@ typedef bool (* unserialize_cursor_fc) (GLineCursor *, packed_buffer *);
/* Donne les éléments requis pour la construction d'une table. */
typedef char *(* create_cursor_db_table_fc) (const char *);
-/* Décrit les colonnes utiles à un chargement de données. */
-typedef bool (* setup_cursor_load_fc) (const char *, bound_value **, size_t *);
-
/* Charge les valeurs utiles pour une localisation. */
typedef bool (* load_cursor_fc) (GLineCursor *, const char *, const bound_value *, size_t);
/* Constitue les champs destinés à une insertion / modification. */
-typedef bool (* prepare_cursor_db_statement_fc) (const GLineCursor *, const char *, bound_value **, size_t *);
+typedef bool (* store_cursor_fc) (const GLineCursor *, const char *, bound_value **, size_t *);
/* Suivi de positions dans un panneau de chargement (instance) */
@@ -86,9 +83,8 @@ struct _GLineCursorClass
unserialize_cursor_fc unserialize; /* Chargement d'un emplacement */
create_cursor_db_table_fc create_db; /* Création de table */
- setup_cursor_load_fc setup_load; /* Préparation du chargement */
load_cursor_fc load; /* Chargement de valeurs */
- prepare_cursor_db_statement_fc prepare; /* Préparation d'enregistrement*/
+ store_cursor_fc store; /* Préparation d'enregistrement*/
};