1#pragma once
2
3#include "include/pw_types.h"
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9PW_STRUCT(_PwCompoundData) {
10 atomic_uint* set_refcount_ptr;
11 atomic_uint set_refcount;
12};
13
14extern PwInterface_Basic _pw_compound_basic_interface;
15
16#ifdef __cplusplus
17}
18#endif