The following terminology is used throughout Biohazrd and this documentation.
- Generator author
- Interop library
- Unsafe interop layer
- Safe interop layer
- Declaration tree
- Translation
The developer who interacts with Biohazrd to produce the generator portion of an interop library.
A collection of C# code which handles accessing a native C/C++ library from C#.
The lowest level of interop which closely matches the native C/C++ API. As the name implies, accessing this portion of the API usually requires the use of unsafe code in C#.
An abstraction over the unsafe layer to make it easier for C# developers to consume.
An immutable tree of declarations that describes the native code being processed, the root of the tree is the TranslatedLibrary
.
Code which modifies the declaration tree.