Difference between revisions of "KLinkedList"
Jump to navigation
Jump to search
(Created page with "Category:Kernel objects") |
|||
Line 1: | Line 1: | ||
[[Category:Kernel objects]] | [[Category:Kernel objects]] | ||
+ | |||
+ | Size : 0xC bytes | ||
+ | |||
+ | {| class="wikitable" border="1" | ||
+ | |- | ||
+ | ! Offset | ||
+ | ! Type | ||
+ | ! Description | ||
+ | |- | ||
+ | | 0x0 | ||
+ | | u32 | ||
+ | | KLinkedListNode count | ||
+ | |- | ||
+ | | 0x4 | ||
+ | | KLinkedListNode* | ||
+ | | Pointer to first KLinkedListNode in the list of objects | ||
+ | |- | ||
+ | | 0x8 | ||
+ | | KLinkedListNode* | ||
+ | | Pointer to last KLinkedListNode in the list of objects | ||
+ | |} |
Revision as of 01:06, 14 May 2015
Size : 0xC bytes
Offset | Type | Description |
---|---|---|
0x0 | u32 | KLinkedListNode count |
0x4 | KLinkedListNode* | Pointer to first KLinkedListNode in the list of objects |
0x8 | KLinkedListNode* | Pointer to last KLinkedListNode in the list of objects |