/* OpenIDA - Outil d'analyse de fichiers binaires * e_pe.h - prototypes pour le support du format Portable Executable * * Copyright (C) 2008 Cyrille Bagard * * This file is part of OpenIDA. * * OpenIDA is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * OpenIDA is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Foobar. If not, see . */ #ifndef _FORMAT_PE_E_PE_H #define _FORMAT_PE_E_PE_H #include "../exe_format.h" /* Description du format Pe */ typedef struct _pe_format pe_format; /* Indique si le format peut ĂȘtre pris en charge ici. */ bool pe_is_matching(const uint8_t *, off_t); /* Prend en charge une nouvelle classe PE. */ exe_format *load_pe(const uint8_t *, off_t); /* Efface la prise en charge une nouvelle classe PE. */ void unload_pe(pe_format *); #endif /* _FORMAT_PE_E_PE_H */