Deleted Added
full compact
libelftc.h (280932) libelftc.h (295577)
1/*-
2 * Copyright (c) 2009 Kai Wang
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 10 unchanged lines hidden (view full) ---

19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: users/kaiwang27/elftc/libelftc.h 392 2009-05-31 19:17:46Z kaiwang27 $
1/*-
2 * Copyright (c) 2009 Kai Wang
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 10 unchanged lines hidden (view full) ---

19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: users/kaiwang27/elftc/libelftc.h 392 2009-05-31 19:17:46Z kaiwang27 $
27 * $Id: libelftc.h 3174 2015-03-27 17:13:41Z emaste $
27 * $Id: libelftc.h 3309 2016-01-10 09:10:51Z kaiwang27 $
28 */
29
30#ifndef _LIBELFTC_H_
31#define _LIBELFTC_H_
32
33#include <sys/stat.h>
34
35#include <libelf.h>

--- 5 unchanged lines hidden (view full) ---

41typedef struct _Elftc_String_Table Elftc_String_Table;
42
43/* Target types. */
44typedef enum {
45 ETF_NONE,
46 ETF_ELF,
47 ETF_BINARY,
48 ETF_SREC,
28 */
29
30#ifndef _LIBELFTC_H_
31#define _LIBELFTC_H_
32
33#include <sys/stat.h>
34
35#include <libelf.h>

--- 5 unchanged lines hidden (view full) ---

41typedef struct _Elftc_String_Table Elftc_String_Table;
42
43/* Target types. */
44typedef enum {
45 ETF_NONE,
46 ETF_ELF,
47 ETF_BINARY,
48 ETF_SREC,
49 ETF_IHEX
49 ETF_IHEX,
50 ETF_PE,
51 ETF_EFI,
50} Elftc_Bfd_Target_Flavor;
51
52/*
53 * Demangler flags.
54 */
55
56/* Name mangling style. */
57#define ELFTC_DEM_UNKNOWN 0x00000000U /* Not specified. */

--- 39 unchanged lines hidden ---
52} Elftc_Bfd_Target_Flavor;
53
54/*
55 * Demangler flags.
56 */
57
58/* Name mangling style. */
59#define ELFTC_DEM_UNKNOWN 0x00000000U /* Not specified. */

--- 39 unchanged lines hidden ---