From ceb874e83d44a2c3d7c7d167fc8853694538ae53 Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 7 Jun 2026 17:45:48 -0400 Subject: type definitions with type_ptr --- docs/application/queue.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'docs/application/queue.md') 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; ``` -- cgit v1.2.3