diff options
Diffstat (limited to 'src/decomp/output.c')
-rw-r--r-- | src/decomp/output.c | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/src/decomp/output.c b/src/decomp/output.c index 698ce0d..20e18a9 100644 --- a/src/decomp/output.c +++ b/src/decomp/output.c @@ -25,6 +25,7 @@ #include "output-int.h" +#include "../analysis/type.h" /* TODO : remme */ @@ -216,12 +217,12 @@ void g_lang_output_write_comp_sign(GLangOutput *output, GBufferLine *line, CompS * * ******************************************************************************/ -GBufferLine *g_lang_output_start_class(GLangOutput *output, GCodeBuffer *buffer, const GDataType *type) +GBufferLine *g_lang_output_start_class(GLangOutput *output, GCodeBuffer *buffer, const void *type) { GBufferLine *result; /* Adresse nouvelle à remonter */ if (output->start_class != NULL) - result = output->start_class(output, buffer, type); + result = output->start_class(output, buffer, (const GDataType *)type); else result = NULL; @@ -255,6 +256,33 @@ void g_lang_output_end_class(GLangOutput *output, GCodeBuffer *buffer) * * * Paramètres : output = encadrant de l'impression en langage de prog. * * buffer = tampon de sortie à disposition. * +* * +* Description : Débute la documentation d'une routine. * +* * +* Retour : Ligne nouvellement créée. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GBufferLine *g_lang_output_start_routine_info(const GLangOutput *output, GCodeBuffer *buffer) +{ + GBufferLine *result; /* Adresse nouvelle à remonter */ + + if (output->start_routine_proto != NULL) + result = output->start_info(output, buffer); + + else result = NULL; + + return result; + +} + + +/****************************************************************************** +* * +* Paramètres : output = encadrant de l'impression en langage de prog. * +* buffer = tampon de sortie à disposition. * * ret = type de retour de la routine traitée. * * * * Description : Débute la définition d'une routine. * @@ -265,7 +293,7 @@ void g_lang_output_end_class(GLangOutput *output, GCodeBuffer *buffer) * * ******************************************************************************/ -GBufferLine *g_lang_output_start_routine_prototype(GLangOutput *output, GCodeBuffer *buffer, const GDataType *ret) +GBufferLine *g_lang_output_start_routine_prototype(GLangOutput *output, GCodeBuffer *buffer, const void *ret) { GBufferLine *result; /* Adresse nouvelle à remonter */ |