// // This file manually written from cef/include/internal/cef_types.h. // C API name: cef_termination_status_t. // namespace Cef3 { /// /// Process termination status values. /// public enum CefTerminationStatus { /// /// Non-zero exit status. /// Termination, /// /// SIGKILL or task manager kill. /// WasKilled, /// /// Segmentation fault. /// ProcessCrashed, } }