blob: 955f5f4d7e6b7c730c3f4e7a2f8313dacd71afe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef PARSER_UTILS_H
#define PARSER_UTILS_H
#include "parser.h"
#define streq(a,b) (!strcasecmp((a),(b)))
#define artwork_pathname(file) (PKG_SHARE_DIR "/artwork/" file)
#define define_parser(__name, __priority, __parse_fn) \
struct parser \
__attribute__((unused, section("parsers"))) \
__ ## __name ## _parser = { \
.name = #__name, \
.priority = __priority, \
.parse = __parse_fn, \
};
void device_add_boot_option(struct device *device,
struct boot_option *boot_option);
const char *generic_icon_file(enum generic_icon_type type);
enum generic_icon_type guess_device_type(struct discover_context *ctx);
#endif /* PARSER_UTILS_H */
|