mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_stone
synced 2026-01-28 19:46:23 +00:00
switch to libinit for device recognition, taken and modified from https://github.com/Evolution-X-Devices/device_xiaomi_marble/commits/udc/libinit
24 lines
479 B
C++
24 lines
479 B
C++
/*
|
|
* Copyright (C) 2021 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef LIBINIT_DALVIK_HEAP_H
|
|
#define LIBINIT_DALVIK_HEAP_H
|
|
|
|
#include <string>
|
|
|
|
typedef struct dalvik_heap_info {
|
|
std::string heapstartsize;
|
|
std::string heapgrowthlimit;
|
|
std::string heapsize;
|
|
std::string heapminfree;
|
|
std::string heapmaxfree;
|
|
std::string heaptargetutilization;
|
|
} dalvik_heap_info_t;
|
|
|
|
void set_dalvik_heap(void);
|
|
|
|
#endif // LIBINIT_DALVIK_HEAP_H
|