diff options
Diffstat (limited to 'src/project.c')
-rw-r--r-- | src/project.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/project.c b/src/project.c index 70cbef1..60767be 100644 --- a/src/project.c +++ b/src/project.c @@ -614,6 +614,42 @@ const GOpenidaBinary **get_openida_project_binaries(const openida_project *proje + + +/****************************************************************************** +* * +* Paramètres : project = projet à consulter. * +* binary = binaire chargé, encadré et concerné. * +* * +* Description : Fournit un module de débogage prêt à emploi. * +* * +* Retour : Instance prête à devenir effective. * +* * +* Remarques : - * +* * +******************************************************************************/ + +GBinaryDebugger *get_main_debugger_for_binary(const openida_project *project, const GOpenidaBinary *binary) +{ + return g_java_debugger_new(binary, NULL); /* FIXME */ + +} + + + + + + + + + + + + + + + + /* ---------------------------------------------------------------------------------- */ /* PARTIE GRAPHIQUE DES [DE]CHARGEMENTS */ /* ---------------------------------------------------------------------------------- */ |