Changeset 104433 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Apr 25, 2024 2:13:49 PM (10 months ago)
- svn:sync-xref-src-repo-rev:
- 162933
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInWinNt.cpp
r102855 r104433 63 63 * PsLoadedModuleList entry for 32-bit NT aka LDR_DATA_TABLE_ENTRY. 64 64 * Tested with XP. 65 * 66 * See comments in NTMTE64. 65 67 */ 66 68 typedef struct NTMTE32 … … 85 87 } FullDllName, 86 88 BaseDllName; 87 uint32_t Flags; 89 uint32_t Flags; /**< NTMTE_F_XXX */ 88 90 uint16_t LoadCount; 89 91 uint16_t TlsIndex; … … 94 96 /** 95 97 * PsLoadedModuleList entry for 64-bit NT aka LDR_DATA_TABLE_ENTRY. 98 * 99 * Starting with XP it it's specialized for the kernel as KLDR_DATA_TABLE_ENTRY 100 * with compatible layout up to a point, the non-K version is used in user land. 101 * The Flags values probably differs a bit by now. 96 102 */ 97 103 typedef struct NTMTE64 … … 116 122 } FullDllName, /**< 0x48 */ 117 123 BaseDllName; /**< 0x58 */ 118 uint32_t Flags; /**< 0x68 */124 uint32_t Flags; /**< 0x68 NTMTE_F_XXX */ 119 125 uint16_t LoadCount; /**< 0x6c */ 120 126 uint16_t TlsIndex; /**< 0x6e */ … … 122 128 } NTMTE64; 123 129 typedef NTMTE64 *PNTMTE64; 130 131 #define NTMTE_F_FORCE_INTEGRITY 0x20 /* copy of IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY */ 124 132 125 133 /** MTE union. */
Note:
See TracChangeset
for help on using the changeset viewer.