summaryrefslogtreecommitdiff
path: root/docs/application/union.md
blob: 0032c0d95ed0d038a2030757712e044eb0eab5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Union

---

## Object Definitions

```c
typedef struct _kpl_union {
    KPL_POOL_HEADER(_kpl_union);
    uint32_t tag;
    kpl_class class;
} kpl_union;
```