diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-01-26 16:39:48 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-01-26 16:39:48 (GMT) |
commit | 7bcec72d69c5350678ed6350636687c3c29bbc61 (patch) | |
tree | d796bd80a21da3c757a1aec798bb9a2e9fd94ff3 /src/dialogs | |
parent | d761eddfd4b5a27620aaa5e67a0e2e2bc5d55cb1 (diff) |
Rewritten the way projects are managed.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@229 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/dialogs')
-rw-r--r-- | src/dialogs/add_shellcode.c | 4 | ||||
-rw-r--r-- | src/dialogs/add_shellcode.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/dialogs/add_shellcode.c b/src/dialogs/add_shellcode.c index 6cb4f9d..78bfb9d 100644 --- a/src/dialogs/add_shellcode.c +++ b/src/dialogs/add_shellcode.c @@ -2,7 +2,7 @@ /* OpenIDA - Outil d'analyse de fichiers binaires * export.c - assistant d'exportation de contenu binaire * - * Copyright (C) 2011 Cyrille Bagard + * Copyright (C) 2011-2012 Cyrille Bagard * * This file is part of OpenIDA. * @@ -120,7 +120,7 @@ static void register_content_panel(GtkAssistant *); * * ******************************************************************************/ -void run_add_shellcode_assistant(openida_project *project, GtkWindow *parent) +void run_add_shellcode_assistant(GStudyProject *project, GtkWindow *parent) { GtkWidget *assistant; /* Fenêtre à afficher */ GObject *ref; /* Espace de référencement */ diff --git a/src/dialogs/add_shellcode.h b/src/dialogs/add_shellcode.h index db30ada..115507c 100644 --- a/src/dialogs/add_shellcode.h +++ b/src/dialogs/add_shellcode.h @@ -2,7 +2,7 @@ /* OpenIDA - Outil d'analyse de fichiers binaires * export.h - prototypes pour l'assistant d'exportation de contenu binaire * - * Copyright (C) 2011 Cyrille Bagard + * Copyright (C) 2011-2012 Cyrille Bagard * * This file is part of OpenIDA. * @@ -30,7 +30,7 @@ /* Crée et affiche un assistant d'ajout de binaire. */ -void run_add_shellcode_assistant(openida_project *, GtkWindow *); +void run_add_shellcode_assistant(GStudyProject *, GtkWindow *); |