2009-03-04 04:28:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RECOVERY_COMMON_H
|
|
|
|
#define RECOVERY_COMMON_H
|
|
|
|
|
2013-05-14 20:03:02 +02:00
|
|
|
#include <stdarg.h>
|
2018-04-26 03:59:40 +02:00
|
|
|
#include <stdio.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-03-07 22:32:30 +01:00
|
|
|
#include <string>
|
|
|
|
|
2017-05-04 22:03:18 +02:00
|
|
|
// Not using the command-line defined macro here because this header could be included by
|
|
|
|
// device-specific recovery libraries. We static assert the value consistency in recovery.cpp.
|
|
|
|
static constexpr int kRecoveryApiVersion = 3;
|
2009-06-18 02:29:40 +02:00
|
|
|
|
2016-11-03 19:37:15 +01:00
|
|
|
class RecoveryUI;
|
2018-05-03 01:56:00 +02:00
|
|
|
struct selabel_handle;
|
2016-11-03 19:37:15 +01:00
|
|
|
|
2018-05-03 01:56:00 +02:00
|
|
|
extern struct selabel_handle* sehandle;
|
2016-11-03 19:37:15 +01:00
|
|
|
extern RecoveryUI* ui;
|
2015-04-08 02:16:35 +02:00
|
|
|
extern bool modified_flash;
|
2018-05-04 20:24:10 +02:00
|
|
|
extern bool has_cache;
|
2016-11-03 19:37:15 +01:00
|
|
|
|
|
|
|
// The current stage, e.g. "1/2".
|
2016-12-26 03:46:50 +01:00
|
|
|
extern std::string stage;
|
2016-11-03 19:37:15 +01:00
|
|
|
|
|
|
|
// The reason argument provided in "--reason=".
|
|
|
|
extern const char* reason;
|
2010-09-20 21:16:13 +02:00
|
|
|
|
2018-04-26 19:24:03 +02:00
|
|
|
void ui_print(const char* format, ...) __printflike(1, 2);
|
2013-05-14 20:03:02 +02:00
|
|
|
|
2015-02-10 23:46:14 +01:00
|
|
|
bool is_ro_debuggable();
|
|
|
|
|
2018-08-31 20:57:51 +02:00
|
|
|
bool SetUsbConfig(const std::string& state);
|
2009-03-04 04:28:42 +01:00
|
|
|
#endif // RECOVERY_COMMON_H
|