Changeset 84509 in vbox for trunk/src/VBox/Runtime/common/dbg
- Timestamp:
- May 25, 2020 3:09:24 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138238
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmodmapsym.cpp
r82968 r84509 67 67 uint8_t cchMaxSym; /**< 0x0e: Maximum symbol-name length. */ 68 68 uint8_t cchModule; /**< 0x0f: Length of the module name. */ 69 RT_FLEXIBLE_ARRAY_EXTENSION 69 70 char achModule[RT_FLEXIBLE_ARRAY]; /**< 0x10: Module name, length given by cchModule. */ 70 71 } MAPSYMHDR; … … 92 93 uint16_t u16Reserved2; /**< 0x12: Reserved / unknown. Often seen holding 0xff00. */ 93 94 uint8_t cchSegName; /**< 0x14: Segment name length. */ 95 RT_FLEXIBLE_ARRAY_EXTENSION 94 96 char achSegName[RT_FLEXIBLE_ARRAY]; /**< 0x15: Segment name, length given by cchSegName. */ 95 97 } MAPSYMSEGDEF; … … 122 124 uint16_t cLines; /**< 0x08: Number of line numbers in the array. */ 123 125 uint8_t cchSrcFile; /**< 0x0a: Length of source filename. */ 126 RT_FLEXIBLE_ARRAY_EXTENSION 124 127 char achSrcFile[RT_FLEXIBLE_ARRAY]; /**< 0x0b: Source filename, length given by cchSrcFile. */ 125 128 } MAPSYMLINEDEF;
Note:
See TracChangeset
for help on using the changeset viewer.