summaryrefslogtreecommitdiff
path: root/src/analysis/loading.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-09-22 07:26:29 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-09-22 07:26:29 (GMT)
commite5d10374c2aa3cedd679f34fb61457bd0b1c1d53 (patch)
tree72a50bbc989d95d4c869f3b47dffb2dccca41571 /src/analysis/loading.h
parent78c0975c334111a4d3ed6c5890d995287e6e5419 (diff)
Provided a way to load known flat formats.
Diffstat (limited to 'src/analysis/loading.h')
-rw-r--r--src/analysis/loading.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/analysis/loading.h b/src/analysis/loading.h
index c7ede58..e2f7801 100644
--- a/src/analysis/loading.h
+++ b/src/analysis/loading.h
@@ -67,9 +67,15 @@ void g_content_explorer_delete_group(GContentExplorer *, wgroup_id_t);
/* Ajoute un nouveau contenu découvert au crédit d'un groupe. */
void g_content_explorer_populate_group(GContentExplorer *, wgroup_id_t, GBinContent *);
+/* Note un contenu chargé pour future intégration guidée. */
+void g_content_explorer_note_detected(GContentExplorer *, wgroup_id_t, GLoadedContent *);
+
/* Fournit la liste de tous les contenus disponibles. */
GBinContent **g_content_explorer_get_all(GContentExplorer *, wgroup_id_t, size_t *);
+/* Fournit la liste de tous les contenus préalablement détectés. */
+GLoadedContent **g_content_explorer_get_detected(GContentExplorer *, wgroup_id_t, size_t *);
+
/* ------------------- RESOLUTION DE CONTENUS BINAIRES EN CHARGES ------------------- */
@@ -97,7 +103,7 @@ GType g_content_resolver_get_type(void);
GContentResolver *g_content_resolver_new(void);
/* Initie une nouvelle vague de résolution de contenus. */
-void g_content_resolver_create_group(GContentResolver *, wgroup_id_t, GBinContent **, size_t);
+void g_content_resolver_create_group(GContentResolver *, wgroup_id_t, GBinContent **, size_t, GLoadedContent **, size_t);
/* Termine une vague de résolution de contenu. */
void g_content_resolver_delete_group(GContentResolver *, wgroup_id_t);