1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/// Constants for OLE file format
/// Main OLE file parsing implementation
/// Metadata extraction from OLE property streams
/// MTEF extractor for OLE documents (internal use only)
/// Shared binary parsing utilities for OLE formats.
///
/// This module provides common binary parsing functions used across
/// DOC, PPT, and other OLE-based formats. Based on Apache POI's
/// LittleEndian and similar utility classes.
/// Shared SPRM (Single Property Modifier) parsing
///
/// SPRM parsing logic shared between DOC and PPT formats.
/// Based on Apache POI's SPRM handling.
/// Legacy Word document (.doc) reader
///
/// This module provides functionality to parse Microsoft Word documents
/// in the legacy binary format (.doc files), which are OLE2-based files.
/// Legacy PowerPoint presentation (.ppt) reader
///
/// This module provides functionality to parse Microsoft PowerPoint presentations
/// in the legacy binary format (.ppt files), which are OLE2-based files.
/// Legacy Excel spreadsheet (.xls) reader
///
/// This module provides functionality to parse Microsoft Excel spreadsheets
/// in the legacy binary format (.xls files), which are OLE2-based files.
// Re-export public types for convenient access
pub use ;
pub use ;
pub use ;