summaryrefslogtreecommitdiff
path: root/src/analysis/binary.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-07-16 00:17:48 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-07-16 00:17:48 (GMT)
commita61f089babe336b012da31a494b0f7470b6e1a9a (patch)
tree0dccd2fe50375e84de49b1119a3feec68b6bd23d /src/analysis/binary.c
parent46c8fd10ec5bff1ee1146a0b6a7aa7eb9f47a2da (diff)
Used the binary contents a little bit more.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@551 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/binary.c')
-rw-r--r--src/analysis/binary.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/analysis/binary.c b/src/analysis/binary.c
index 7e16990..e5b9a46 100644
--- a/src/analysis/binary.c
+++ b/src/analysis/binary.c
@@ -938,29 +938,6 @@ const char *g_loaded_binary_get_name(const GLoadedBinary *binary, bool full)
/******************************************************************************
* *
* Paramètres : binary = élément binaire à consulter. *
-* length = taille en octets des données chargées. [OUT] *
-* *
-* Description : Fournit les détails du contenu binaire chargé en mémoire. *
-* *
-* Retour : Pointeur vers le début des données. *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-bin_t *g_loaded_binary_get_data(const GLoadedBinary *binary, off_t *length)
-{
- if (length != NULL)
- *length = binary->bin_length;
-
- return binary->bin_data;
-
-}
-
-
-/******************************************************************************
-* *
-* Paramètres : binary = élément binaire à consulter. *
* *
* Description : Fournit le format de fichier reconnu dans le contenu binaire.*
* *