You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
404 B
26 lines
404 B
3 years ago
|
#ifndef INIT_SEC_H
|
||
|
#define INIT_SEC_H
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
enum device_variant {
|
||
|
VARIANT_A525F = 0,
|
||
|
VARIANT_MAX
|
||
|
};
|
||
|
|
||
|
typedef struct {
|
||
|
std::string model;
|
||
|
std::string codename;
|
||
|
} variant;
|
||
|
|
||
|
static const variant international_models = {
|
||
|
.model = "SM-A525F",
|
||
|
.codename = "a52q"
|
||
|
};
|
||
|
|
||
|
static const variant *all_variants[VARIANT_MAX] = {
|
||
|
&international_models
|
||
|
};
|
||
|
|
||
|
#endif // INIT_SEC_H
|