mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
C API: Value -> nix_value
This commit is contained in:
parent
afdd12be5e
commit
0b56c98b1c
5 changed files with 29 additions and 5 deletions
|
|
@ -35,8 +35,11 @@ typedef enum {
|
|||
} ValueType;
|
||||
|
||||
// forward declarations
|
||||
typedef void Value;
|
||||
typedef struct nix_value nix_value;
|
||||
typedef struct EvalState EvalState;
|
||||
|
||||
[[deprecated("use nix_value instead")]] typedef nix_value Value;
|
||||
|
||||
// type defs
|
||||
/** @brief Stores an under-construction set of bindings
|
||||
* @ingroup value_manip
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue