X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=lib%2Ftypes%2Ftypes.h;h=90b23c37a77446d0cda4b531869c6dee31eed343;hb=1435814a67d3c1a0199f84b91246b37eb8fa8b99;hp=1843557728814111383342402c64c98f46974514;hpb=c25601a71b0951225691aa2edc389826f7f3836c;p=petitboot diff --git a/lib/types/types.h b/lib/types/types.h index 1843557..90b23c3 100644 --- a/lib/types/types.h +++ b/lib/types/types.h @@ -16,6 +16,7 @@ struct device { }; struct boot_option { + char *device_id; char *id; char *name; char *description; @@ -36,4 +37,14 @@ struct boot_command { char *boot_args; }; +struct boot_status { + enum { + BOOT_STATUS_INFO, + BOOT_STATUS_ERROR, + } type; + char *message; + char *detail; + int progress; +}; + #endif /* _TYPES_H */