summaryrefslogtreecommitdiff
path: root/docs/application/buffer.md
blob: 230c2d66921a6ebd79cd130933179b1b6823cb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Buffer

---

## Object Definitions

```c
typedef struct _kpl_buffer {
    POOL_HEADER(_kpl_buffer);
    uint32_t byte_length;
    kpl_interface *interface;
    uint8_t bytes;
} kpl_buffer;
```

## Unicode Methods