From 970351442dc47401a4041334e90868e0692fd515 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Fri, 8 Dec 2017 14:48:58 +0100 Subject: [PATCH] record_base: provide stream type constants from olefile --- oletools/record_base.py | 6 ++++++ 1 file changed, 6 insertions(+), 0 deletions(-) diff --git a/oletools/record_base.py b/oletools/record_base.py index b7796f8..6ccb699 100644 --- a/oletools/record_base.py +++ b/oletools/record_base.py @@ -73,6 +73,12 @@ from oletools.thirdparty import olefile # Helpers ############################################################################### +STGTY_EMPTY = olefile.STGTY_EMPTY # 0 +STGTY_STORAGE = olefile.STGTY_STORAGE # 1 +STGTY_STREAM = olefile.STGTY_STREAM # 2 +STGTY_LOCKBYTES = olefile.STGTY_LOCKBYTES # 3 +STGTY_PROPERTY = olefile.STGTY_PROPERTY # 4 +STGTY_ROOT = olefile.STGTY_ROOT # 5 STGTY_SUBSTREAM = 10 ENTRY_TYPE2STR = { -- libgit2 0.21.4