diff options
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 *); |