diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-04-24 10:16:17 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-04-24 10:16:17 (GMT) |
commit | e56b4db3aae87f0458319019635dea4968a5c529 (patch) | |
tree | bbbbbca3921dca2add25f74d73096900254fe301 /src/format/pe | |
parent | fb12cfc1727ba949b70a48ee042a2aec9ebbb407 (diff) |
Updated a little bit the Java part (welcome back).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@154 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/pe')
-rw-r--r-- | src/format/pe/pe-int.h | 4 | ||||
-rw-r--r-- | src/format/pe/pe.c | 12 | ||||
-rw-r--r-- | src/format/pe/pe.h | 6 |
3 files changed, 11 insertions, 11 deletions
diff --git a/src/format/pe/pe-int.h b/src/format/pe/pe-int.h index 3322f62..0c8bf45 100644 --- a/src/format/pe/pe-int.h +++ b/src/format/pe/pe-int.h @@ -35,7 +35,7 @@ -/* Format d'exécutable générique (instance) */ +/* Format d'exécutable PE (instance) */ struct _GPeFormat { GExeFormat parent; /* A laisser en premier */ @@ -47,7 +47,7 @@ struct _GPeFormat }; -/* Format d'exécutable générique (classe) */ +/* Format d'exécutable PE (classe) */ struct _GPeFormatClass { GExeFormatClass parent; /* A laisser en premier */ diff --git a/src/format/pe/pe.c b/src/format/pe/pe.c index 1d4e6f4..7b2ac25 100644 --- a/src/format/pe/pe.c +++ b/src/format/pe/pe.c @@ -338,9 +338,9 @@ static GBinPart **g_pe_format_get_parts(const GPeFormat *format, size_t *count) /****************************************************************************** * * -* Paramètres : format = description de l'exécutable à consulter. * -* addr = adresse virtuelle à retrouver. * -* pos = position correspondante. [OUT] * +* Paramètres : format = description de l'exécutable à consulter. * +* addr = adresse virtuelle à retrouver. * +* pos = position correspondante. [OUT] * * * * Description : Fournit la position correspondant à une adresse virtuelle. * * * @@ -363,9 +363,9 @@ static bool g_pe_format_translate_address_into_offset(const GPeFormat *format, v /****************************************************************************** * * -* Paramètres : format = description de l'exécutable à consulter. * -* pos = position dans le flux binaire à retrouver. * -* addr = adresse virtuelle correspondante. [OUT] * +* Paramètres : format = description de l'exécutable à consulter. * +* pos = position dans le flux binaire à retrouver. * +* addr = adresse virtuelle correspondante. [OUT] * * * * Description : Fournit l'adresse virtuelle correspondant à une position. * * * diff --git a/src/format/pe/pe.h b/src/format/pe/pe.h index da1f44d..9789205 100644 --- a/src/format/pe/pe.h +++ b/src/format/pe/pe.h @@ -21,8 +21,8 @@ */ -#ifndef _FORMAT_PE_E_PE_H -#define _FORMAT_PE_E_PE_H +#ifndef _FORMAT_PE_PE_H +#define _FORMAT_PE_PE_H #include <glib-object.h> @@ -59,4 +59,4 @@ GBinFormat *g_pe_format_new(const bin_t *, off_t); -#endif /* _FORMAT_PE_E_PE_H */ +#endif /* _FORMAT_PE_PE_H */ |