summaryrefslogtreecommitdiff
path: root/src/analysis/roptions.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-08-09 18:12:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-08-09 18:12:27 (GMT)
commit5cd25c4adfe0426520a51a76de3f77c77cfa4b8e (patch)
tree396514971fb78e81b7bb55c9cd3331d87b45ca9a /src/analysis/roptions.c
parentd02deb2425d6559c357bdd00e1c0fb05f35d5fc9 (diff)
Reorganized the way formats are handled (Java and PE got disabled, Dwarf is empty).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@105 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/roptions.c')
-rw-r--r--src/analysis/roptions.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/roptions.c b/src/analysis/roptions.c
index aab8ef7..4c49a15 100644
--- a/src/analysis/roptions.c
+++ b/src/analysis/roptions.c
@@ -28,7 +28,7 @@
/* Options de représentation (instance) */
struct _GRenderingOptions
{
- exe_format *format; /* Format du contenu bianire */
+ GExeFormat *format; /* Format du contenu bianire */
GArchProcessor *proc; /* Architecture utilisée */
bool show_address[MRD_COUNT]; /* Affichage de l'adresse ? */
@@ -105,7 +105,7 @@ static void g_rendering_options_init(GRenderingOptions *options)
* *
******************************************************************************/
-GRenderingOptions *g_rendering_options_new(exe_format *format, GArchProcessor *proc)
+GRenderingOptions *g_rendering_options_new(GExeFormat *format, GArchProcessor *proc)
{
GRenderingOptions *result; /* Structure à retourner */
@@ -131,7 +131,7 @@ GRenderingOptions *g_rendering_options_new(exe_format *format, GArchProcessor *p
* *
******************************************************************************/
-exe_format *g_rendering_options_get_format(const GRenderingOptions *options)
+GExeFormat *g_rendering_options_get_format(const GRenderingOptions *options)
{
return options->format;