diff options
Diffstat (limited to 'docs/application/buffer.md')
| -rw-r--r-- | docs/application/buffer.md | 14 |
1 files changed, 14 insertions, 0 deletions
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; +``` |
