1*7fd79137SRobert Mustacchi #ifndef _DWARF_ELF_PORT_H 2*7fd79137SRobert Mustacchi #define _DWARF_ELF_PORT_H 3*7fd79137SRobert Mustacchi /* 4*7fd79137SRobert Mustacchi 5*7fd79137SRobert Mustacchi Copyright (C) 2008-2010 David Anderson. All rights reserved. 6*7fd79137SRobert Mustacchi Portions Copyright 2008-2010 Arxan Technologies, Inc. All rights reserved. 7*7fd79137SRobert Mustacchi 8*7fd79137SRobert Mustacchi This program is free software; you can redistribute it and/or modify it 9*7fd79137SRobert Mustacchi under the terms of version 2.1 of the GNU Lesser General Public License 10*7fd79137SRobert Mustacchi as published by the Free Software Foundation. 11*7fd79137SRobert Mustacchi 12*7fd79137SRobert Mustacchi This program is distributed in the hope that it would be useful, but 13*7fd79137SRobert Mustacchi WITHOUT ANY WARRANTY; without even the implied warranty of 14*7fd79137SRobert Mustacchi MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 15*7fd79137SRobert Mustacchi 16*7fd79137SRobert Mustacchi Further, this software is distributed without any warranty that it is 17*7fd79137SRobert Mustacchi free of the rightful claim of any third person regarding infringement 18*7fd79137SRobert Mustacchi or the like. Any license provided herein, whether implied or 19*7fd79137SRobert Mustacchi otherwise, applies only to this software file. Patent licenses, if 20*7fd79137SRobert Mustacchi any, provided herein do not apply to combinations of this program with 21*7fd79137SRobert Mustacchi other software, or any other product whatsoever. 22*7fd79137SRobert Mustacchi 23*7fd79137SRobert Mustacchi You should have received a copy of the GNU Lesser General Public 24*7fd79137SRobert Mustacchi License along with this program; if not, write the Free Software 25*7fd79137SRobert Mustacchi Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301, 26*7fd79137SRobert Mustacchi USA. 27*7fd79137SRobert Mustacchi 28*7fd79137SRobert Mustacchi Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane, 29*7fd79137SRobert Mustacchi Mountain View, CA 94043, or: 30*7fd79137SRobert Mustacchi 31*7fd79137SRobert Mustacchi http://www.sgi.com 32*7fd79137SRobert Mustacchi 33*7fd79137SRobert Mustacchi For further information regarding this notice, see: 34*7fd79137SRobert Mustacchi 35*7fd79137SRobert Mustacchi http://oss.sgi.com/projects/GenInfo/NoticeExplan 36*7fd79137SRobert Mustacchi 37*7fd79137SRobert Mustacchi */ 38*7fd79137SRobert Mustacchi 39*7fd79137SRobert Mustacchi 40*7fd79137SRobert Mustacchi 41*7fd79137SRobert Mustacchi /* ELF (usually libelf) object access for the generic object file interface */ 42*7fd79137SRobert Mustacchi 43*7fd79137SRobert Mustacchi int 44*7fd79137SRobert Mustacchi dwarf_elf_object_access_init(dwarf_elf_handle elf , 45*7fd79137SRobert Mustacchi int libdwarf_owns_elf, 46*7fd79137SRobert Mustacchi Dwarf_Obj_Access_Interface** ret_obj, 47*7fd79137SRobert Mustacchi int *err ); 48*7fd79137SRobert Mustacchi 49*7fd79137SRobert Mustacchi void 50*7fd79137SRobert Mustacchi dwarf_elf_object_access_finish(Dwarf_Obj_Access_Interface* obj ); 51*7fd79137SRobert Mustacchi 52*7fd79137SRobert Mustacchi /* End ELF object access for the generic object file interface */ 53*7fd79137SRobert Mustacchi 54*7fd79137SRobert Mustacchi 55*7fd79137SRobert Mustacchi #endif 56