UNPKG
@bugsplat/sysvelf
Version:
latest (0.1.0)
0.1.0
An Executable and Linkable Format (ELF) parser.
github.com/sifteo/node-elf
sifteo/node-elf
@bugsplat/sysvelf
/
lib
/
constants
/
type.js
14 lines
(13 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
*
Type
constants.
*
*
System
V
Application
Binary
Interface,
section
4
(pg.
49
)
*
http://www.sco.com/developers/devspecs/gabi41.pdf
*/
module.exports
=
{
NONE :
0
,
RELOCATABLE :
1
,
EXECUTABLE :
2
,
DYNAMIC :
3
,
CORE :
4
}