~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to include/grub/err.h

Tags: upstream-1.99~20101122
ImportĀ upstreamĀ versionĀ 1.99~20101122

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    GRUB_ERR_BAD_FONT,
51
51
    GRUB_ERR_NOT_IMPLEMENTED_YET,
52
52
    GRUB_ERR_SYMLINK_LOOP,
53
 
    GRUB_ERR_BAD_GZIP_DATA,
 
53
    GRUB_ERR_BAD_COMPRESSED_DATA,
54
54
    GRUB_ERR_MENU,
55
55
    GRUB_ERR_TIMEOUT,
56
56
    GRUB_ERR_IO,
57
 
    GRUB_ERR_ACCESS_DENIED
 
57
    GRUB_ERR_ACCESS_DENIED,
 
58
    GRUB_ERR_EXTRACTOR
58
59
  }
59
60
grub_err_t;
60
61
 
66
67
void EXPORT_FUNC(grub_error_push) (void);
67
68
int EXPORT_FUNC(grub_error_pop) (void);
68
69
void EXPORT_FUNC(grub_print_error) (void);
69
 
int EXPORT_FUNC(grub_err_printf) (const char *fmt, ...)
70
 
__attribute__ ((format (printf, 1, 2)));
 
70
extern int EXPORT_VAR(grub_err_printed_errors);
 
71
int grub_err_printf (const char *fmt, ...)
 
72
     __attribute__ ((format (printf, 1, 2)));
71
73
 
72
74
#endif /* ! GRUB_ERR_HEADER */