Files
android_bootable_recovery/twrpinstall/include/twinstall/get_args.h
bigbiff aed1bdfe59 get_args: process /data/cache/command
Change-Id: I744cdc5a72f53fd1224de242e30ff261e6104900
2021-09-25 20:52:58 +00:00

16 lines
391 B
C++
Executable File

#include <string>
#include <vector>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/strings.h>
#include "recovery_utils/roots.h"
#include "bootloader_message/include/bootloader_message/bootloader_message.h"
extern std::string stage;
class args {
public:
static std::vector<std::string> get_args(const int *argc, char*** const argv);
};