mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
24 lines
596 B
C#
24 lines
596 B
C#
namespace CapnpC.CSharp.Generator
|
|
{
|
|
/// <summary>
|
|
/// Why did invocation of capnpc.exe fail?
|
|
/// </summary>
|
|
public enum CapnpProcessFailure
|
|
{
|
|
/// <summary>
|
|
/// Because capnpc.exe was not found. It is probably not installed.
|
|
/// </summary>
|
|
NotFound,
|
|
|
|
/// <summary>
|
|
/// Because it exited with an error. Probably invalid .capnp file input.
|
|
/// </summary>
|
|
BadInput,
|
|
|
|
/// <summary>
|
|
/// Because it produced an apparently bad code generation request.
|
|
/// </summary>
|
|
BadOutput
|
|
}
|
|
}
|