mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
18 lines
234 B
C
18 lines
234 B
C
|
#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
|