VirtualBox

source: vbox/trunk/src/VBox/Runtime/include/internal/ldrELF.h@ 42261

Last change on this file since 42261 was 37560, checked in by vboxsync, 13 years ago

IPRT: Darwin symbol hacking in progress.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: ldrELF.h 37560 2011-06-20 14:48:32Z vboxsync $ */
2/** @file
3 * ELF types, current architecture.
4 */
5
6/*
7 * Copyright (C) 2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28#ifndef ___internal_ldrELF_h
29#define ___internal_ldrELF_h
30
31#if defined(RT_ARCH_AMD64)
32# include "ldrELF64.h"
33typedef Elf64_Addr Elf_Addr;
34typedef Elf64_Half Elf_Half;
35typedef Elf64_Off Elf_Off;
36typedef Elf64_Sword Elf_Sword;
37typedef Elf64_Word Elf_Word;
38typedef Elf64_Size Elf_Size;
39typedef Elf64_Hashelt Elf_Hashelt;
40typedef Elf64_Ehdr Elf_Ehdr;
41typedef Elf64_Shdr Elf_Shdr;
42typedef Elf64_Phdr Elf_Phdr;
43typedef Elf64_Nhdr Elf_Nhdr;
44typedef Elf64_Dyn Elf_Dyn;
45typedef Elf64_Rel Elf_Rel;
46typedef Elf64_Rela Elf_Rela;
47typedef Elf64_Sym Elf_Sym;
48
49#define ELF_R_SYM ELF64_R_SYM
50#define ELF_R_TYPE ELF64_R_TYPE
51#define ELF_R_INFO ELF64_R_INFO
52#define ELF_ST_BIND ELF64_ST_BIND
53#define ELF_ST_TYPE ELF64_ST_TYPE
54#define ELF_ST_INFO ELF64_ST_INFO
55
56#elif defined(RT_ARCH_X86)
57# include "ldrELF32.h"
58typedef Elf32_Addr Elf_Addr;
59typedef Elf32_Half Elf_Half;
60typedef Elf32_Off Elf_Off;
61typedef Elf32_Sword Elf_Sword;
62typedef Elf32_Word Elf_Word;
63typedef Elf32_Size Elf_Size;
64typedef Elf32_Hashelt Elf_Hashelt;
65typedef Elf32_Ehdr Elf_Ehdr;
66typedef Elf32_Shdr Elf_Shdr;
67typedef Elf32_Phdr Elf_Phdr;
68typedef Elf32_Nhdr Elf_Nhdr;
69typedef Elf32_Dyn Elf_Dyn;
70typedef Elf32_Rel Elf_Rel;
71typedef Elf32_Rela Elf_Rela;
72typedef Elf32_Sym Elf_Sym;
73
74#define ELF_R_SYM ELF32_R_SYM
75#define ELF_R_TYPE ELF32_R_TYPE
76#define ELF_R_INFO ELF32_R_INFO
77#define ELF_ST_BIND ELF32_ST_BIND
78#define ELF_ST_TYPE ELF32_ST_TYPE
79#define ELF_ST_INFO ELF32_ST_INFO
80
81#else
82# error Unknown arch!
83#endif
84
85#endif /* !___internal_ldrELF_h */
86
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette