Files
device_xiaomi_sm8150-common/libinit/libvariant_headers/include/libvariant.h
Sebastiano Barezzi 54bd30a3c0 sm8150-common: libinit: Introduce libvariant and related Soong select
Change-Id: I1aa99abc47d483cba2a0552e497667212919358c
2025-11-18 01:05:21 +01:00

26 lines
428 B
C++

/*
* Copyright (C) 2021-2025 The LineageOS Project
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <string>
#include <vector>
struct variant_info {
std::string hwc_value;
std::string sku_value;
std::string brand;
std::string device;
std::string marketname;
std::string model;
std::string build_fingerprint;
bool nfc;
};
extern const std::vector<variant_info> variants;