/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
// AUTOMATICALLY GENERATED CODE. Regenerate with genstructs.sh.
package com.facebook.soloader;
public final class Elf64_Ehdr {
public static final int e_ident = 0x0;
public static final int e_type = 0x10;
public static final int e_machine = 0x12;
public static final int e_version = 0x14;
public static final int e_entry = 0x18;
public static final int e_phoff = 0x20;
public static final int e_shoff = 0x28;
public static final int e_flags = 0x30;
public static final int e_ehsize = 0x34;
public static final int e_phentsize = 0x36;
public static final int e_phnum = 0x38;
public static final int e_shentsize = 0x3a;
public static final int e_shnum = 0x3c;
public static final int e_shstrndx = 0x3e;
}