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