A typical pattern with legacy APIs is for the initializing function to return an opaque pointer that needs to be freed by manually calling a cleanup function.
std::unique_ptr can serve as a helper here, as it accepts custom deleters. Unfortunately, the interface is not ergonomic, which we can fix by introducing a short helper.
Compiler Explorer link: https://compiler-explorer.com/z/Gvr7ecPac