diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-07 17:45:48 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-07 17:45:48 -0400 |
| commit | ceb874e83d44a2c3d7c7d167fc8853694538ae53 (patch) | |
| tree | 53bb07d0c52ad667e0a23cef0757817ca154aaa1 /docs/application/queue.md | |
| parent | 7df3d08d8dd0d81f24f0788b44efd37883d3c1c8 (diff) | |
type definitions with type_ptr
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; ``` |
