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]] bool _pw_struct_alloc(PwValuePtr value);
12/*
13 * Allocate struct data for given value and set refcount to 1.
14 * The value must have type id set.
15 */
16
17#ifdef __cplusplus
18}
19#endif