Difference between revisions of "KLinkedListNode"

From 3dbrew
Jump to navigation Jump to search
(Created page with "Category:Kernel objects Size : 0xC bytes {| class="wikitable" border="1" |- ! Offset ! Type ! Description |- | 0x0 | | |}")
 
m
 
(One intermediate revision by one other user not shown)
Line 11: Line 11:
 
|-
 
|-
 
| 0x0
 
| 0x0
|  
+
| KLinkedListNode*
|  
+
| Next
 +
|-
 +
| 0x4
 +
| KLinkedListNode*
 +
| Previous
 +
|-
 +
| 0x8
 +
| void*
 +
| Pointer to the node's data ('key' field).
 
|}
 
|}

Latest revision as of 19:01, 9 May 2015


Size : 0xC bytes

Offset Type Description
0x0 KLinkedListNode* Next
0x4 KLinkedListNode* Previous
0x8 void* Pointer to the node's data ('key' field).