summaryrefslogtreecommitdiff
path: root/src/analysis/project.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-12-27 21:15:20 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-12-27 21:15:20 (GMT)
commit17fed33fbde85312aef489e8c7115e414a1a74e7 (patch)
tree9a79b901a3f9262ad2d7805523a4d8d90fa40d5f /src/analysis/project.c
parent2c28d59fb3671c0fdd1987784076d4968c58b651 (diff)
Reorganized a small part of binary loading.
Diffstat (limited to 'src/analysis/project.c')
-rw-r--r--src/analysis/project.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/analysis/project.c b/src/analysis/project.c
index a5b59ab..31376de 100644
--- a/src/analysis/project.c
+++ b/src/analysis/project.c
@@ -39,7 +39,6 @@
#include "../core/global.h"
#include "../core/params.h"
#include "../glibext/delayed-int.h"
-#include "../glibext/signal.h"
#include "../gui/core/panels.h"
#include "../gui/panels/log.h"
#include "../gui/panels/panel.h"
@@ -503,38 +502,6 @@ GBinContent *g_study_project_find_binary_content_by_hash(GStudyProject *project,
/******************************************************************************
* *
-* Paramètres : loader = travail de chargement mené à bien. *
-* project = lieu d'intégration des résultats obtenus. *
-* *
-* Description : Acquitte la fin d'un chargement différé et complet. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-void ack_loaded_binary(GBinaryLoader *loader, GStudyProject *project)
-{
- GLoadedBinary *binary; /* Binaire désormais en place */
-
- binary = g_binary_loader_get_result(loader);
-
- if (binary != NULL)
- {
- g_signal_connect_to_main_swapped(binary, "disassembly-done",
- G_CALLBACK(g_study_project_attach_content), project,
- g_cclosure_marshal_VOID__VOID);
-
- g_loaded_binary_analyse(binary);
-
- }
-
-}
-
-
-/******************************************************************************
-* *
* Paramètres : project = project à manipuler. *
* content = contenu chargé à associer au projet actuel. *
* *