Add new NE resource flags.

This commit is contained in:
2018-03-02 20:21:52 +00:00
parent a8b4e2b9da
commit 75a347fd2a
2 changed files with 3 additions and 1 deletions

View File

@@ -84,5 +84,6 @@ namespace libexeinfo
const ushort SEGMENT_FLAGS_MASK = 0x3F8; const ushort SEGMENT_FLAGS_MASK = 0x3F8;
const ushort SEGMENT_DISCARD_MASK = 0xF000; const ushort SEGMENT_DISCARD_MASK = 0xF000;
const ushort SEGMENT_IOPRVL_MASK = 0xC00; const ushort SEGMENT_IOPRVL_MASK = 0xC00;
const ushort KNOWN_RSRC_FLAGS = 0x1070;
} }
} }

View File

@@ -80,7 +80,8 @@ namespace libexeinfo
{ {
Moveable = 0x10, Moveable = 0x10,
Pure = 0x20, Pure = 0x20,
Preload = 0x40 Preload = 0x40,
Discardable = 0x1000
} }
/// <summary> /// <summary>