1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-19 08:49:35 +01:00

libstore: add C bindings

This commit is contained in:
Yorick van Pelt 2023-07-14 15:53:01 +02:00 committed by José Luis Lafuente
parent 4702317506
commit 1d41600498
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
4 changed files with 248 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#ifndef NIX_API_STORE_INTERNAL_H
#define NIX_API_STORE_INTERNAL_H
#include "store-api.hh"
struct Store {
nix::ref<nix::Store> ptr;
};
#endif