1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-11 21:16:02 +01:00

libexpr: add C bindings

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

View file

@ -0,0 +1,17 @@
#ifndef NIX_API_EXPR_INTERNAL_H
#define NIX_API_EXPR_INTERNAL_H
// forward declaration
namespace nix {
class EvalState;
};
struct State {
nix::EvalState state;
};
struct GCRef {
void *ptr;
};
#endif // NIX_API_EXPR_INTERNAL_H