summaryrefslogtreecommitdiff
path: root/src/analysis/roptions.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-19 20:00:40 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-19 20:00:40 (GMT)
commit12abead3f60d6f72c0d41672af87215dfc13c8fc (patch)
tree3fda90b6e1b439644a39730ae8935c74da1f2d44 /src/analysis/roptions.c
parent79ae70be75b534c18fbfce38294f5ba7feef0e11 (diff)
Deleted all references to any asm syntax.
Diffstat (limited to 'src/analysis/roptions.c')
-rw-r--r--src/analysis/roptions.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/analysis/roptions.c b/src/analysis/roptions.c
index a40c784..b9e4b96 100644
--- a/src/analysis/roptions.c
+++ b/src/analysis/roptions.c
@@ -31,8 +31,6 @@ struct _GRenderingOptions
GExeFormat *format; /* Format du contenu bianire */
GArchProcessor *proc; /* Architecture utilisée */
- AsmSyntax syntax; /* Style de rendu ASM */
-
bool show_address[MRD_COUNT]; /* Affichage de l'adresse ? */
bool show_code[MRD_COUNT]; /* Affichage du code brut ? */
@@ -160,25 +158,6 @@ GArchProcessor *g_rendering_options_get_processor(const GRenderingOptions *optio
/******************************************************************************
* *
-* Paramètres : options = options à consulter. *
-* *
-* Description : Fournit le style de rendu pour le contenu ASM. *
-* *
-* Retour : Style de rendu pour le langage d'assemblage. *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-AsmSyntax g_rendering_options_get_syntax(const GRenderingOptions *options)
-{
- return options->syntax;
-
-}
-
-
-/******************************************************************************
-* *
* Paramètres : options = options à mettre à jour. *
* rendering = type de rendu impliqué. *
* state = nouvel état de l'option visée. *