File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -1152,25 +1152,27 @@ struct TEB_
1152
1152
voidp TxnScopeExitCallback ; //0x0FD0
1153
1153
voidp TxnScopeContext ; //0x0FD4
1154
1154
DWORD LockCount ; //0x0FD8
1155
+ union
1156
+ {
1157
+ DWORD ProcessRundown ; //0x0FDC (Vista)
1158
+ DWORD SpareUlong0 ; //0x0FDC (Win7-Win8)
1159
+ INT32 WowTebOffset ; //0x0FDC (Win10+)
1160
+ } dwordFDC ;
1161
+
1155
1162
union
1156
1163
{
1157
1164
struct
1158
1165
{
1159
- DWORD ProcessRundown ; //0x0FDC (Vista)
1160
1166
QWORD LastSwitchTime ; //0x0FE0 (Vista)
1161
1167
QWORD TotalSwitchOutTime ; //0x0FE8 (Vista)
1162
1168
LARGE_INTEGER_ WaitReasonBitMap ; //0x0FF0 (Vista)
1163
- } vista ;
1164
1169
1165
- //end of Vista members
1170
+ //end of Vista members
1171
+
1172
+ } vista ;
1166
1173
1167
1174
struct
1168
1175
{
1169
- union
1170
- {
1171
- DWORD SpareUlong0 ; //0x0FDC (Win7-Win8)
1172
- INT32 WowTebOffset ; //0x0FDC (Win10+)
1173
- } dwordFDC ;
1174
1176
voidp ResourceRetValue ; //0x0FE0 (Win7+)
1175
1177
1176
1178
//end of Windows 7 members (TEB_ shrunk after Vista)
@@ -1179,11 +1181,9 @@ struct TEB_
1179
1181
1180
1182
//end of Windows 8 members
1181
1183
1182
- } afterVista ;
1183
- } dwordFDC ;
1184
-
1185
- //members that follow available on Windows 10 and up (currently unknown)
1186
-
1187
- BYTE ReservedForWin10 [0x18 ]; //0x0FE8
1184
+ //members that follow available on Windows 10 and up (currently unknown)
1188
1185
1186
+ BYTE ReservedForWin10 [0x18 ]; //0x0FE8
1187
+ } afterVista ;
1188
+ } dwordFE0 ;
1189
1189
}; //struct TEB_
You can’t perform that action at this time.
0 commit comments