#ifndef NIX_API_STORE_INTERNAL_H #define NIX_API_STORE_INTERNAL_H #include "nix/store/store-api.hh" #include "nix/store/derivations.hh" extern "C" { struct Store { nix::ref ptr; }; struct StorePath { nix::StorePath path; }; struct nix_derivation { nix::Derivation drv; }; } // extern "C" #endif