From 1d5f5dd3cd5cc07352379fe33930770e3d203f3a Mon Sep 17 00:00:00 2001 From: nodist Date: Thu, 4 Jun 2026 17:22:25 -0400 Subject: use await and more application definitions --- docs/application/buffer.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/application/buffer.md (limited to 'docs/application/buffer.md') diff --git a/docs/application/buffer.md b/docs/application/buffer.md new file mode 100644 index 0000000..d72eb8a --- /dev/null +++ b/docs/application/buffer.md @@ -0,0 +1,14 @@ +# Buffer + +--- + +## Object Definitions + +```c +typedef struct _kpl_buffer { + POOL_HEADER(_kpl_buffer); + uint32_t byte_length; + kpl_interface *interface; + uint8_t bytes; +} kpl_buffer; +``` -- cgit v1.2.3