diff options
Diffstat (limited to 'docs/application/queue.md')
| -rw-r--r-- | docs/application/queue.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/application/queue.md b/docs/application/queue.md index 21ec995..bff1dd7 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -2,16 +2,18 @@ --- +## Object Definitions + ```c typedef struct _kpl_queue_item { POOL_HEADER(_kpl_queue_item); - kpl_interface *interface; - kpl_class class; + kpl_any any; } kpl_queue_item; typedef struct _kpl_queue { POOL_HEADER(_kpl_queue); uint32_t length; - kpl_queue_item *head, *tail; + kpl_interface *interface; + kpl_pool_any *head, *tail; } kpl_queue; ``` |
