1#pragma once
 2
 3#include "include/pw.h"
 4
 5#ifdef __cplusplus
 6extern "C" {
 7#endif
 8
 9extern PwInterface_Basic _pw_struct_basic_interface;
10
11[[nodiscard]] uint8_t* _pw_struct_alloc(uint16_t type_id);
12/*
13 * Allocate struct data for given type id and set refcount to 1.
14 */
15
16#ifdef __cplusplus
17}
18#endif