KLinkedListNode: Difference between revisions
Jump to navigation
Jump to search
Created page with "Category:Kernel objects Size : 0xC bytes {| class="wikitable" border="1" |- ! Offset ! Type ! Description |- | 0x0 | | |}" |
Filled in KLinkedListNode data |
||
Line 11: | Line 11: | ||
|- | |- | ||
| 0x0 | | 0x0 | ||
| | | KLinkedListNode* | ||
| | | Next | ||
|- | |||
| 0x4 | |||
| KLinkedListNode* | |||
| Previous | |||
|- | |||
| 0x8 | |||
| void* | |||
| Pointer to the node's data. | |||
|} | |} |
Revision as of 19:25, 26 January 2015
Size : 0xC bytes
Offset | Type | Description |
---|---|---|
0x0 | KLinkedListNode* | Next |
0x4 | KLinkedListNode* | Previous |
0x8 | void* | Pointer to the node's data. |