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
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-05-14 20:03:02 +02:00
|
|
|
#include <stdarg.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2009-06-18 02:29:40 +02:00
|
|
|
#define STRINGIFY(x) #x
|
|
|
|
#define EXPAND(x) STRINGIFY(x)
|
|
|
|
|
2016-11-03 19:37:15 +01:00
|
|
|
class RecoveryUI;
|
|
|
|
|
|
|
|
extern RecoveryUI* ui;
|
2015-04-08 02:16:35 +02:00
|
|
|
extern bool modified_flash;
|
2016-11-03 19:37:15 +01:00
|
|
|
|
|
|
|
// The current stage, e.g. "1/2".
|
|
|
|
extern const char* stage;
|
|
|
|
|
|
|
|
// The reason argument provided in "--reason=".
|
|
|
|
extern const char* reason;
|
2010-09-20 21:16:13 +02:00
|
|
|
|
2011-04-12 18:28:10 +02:00
|
|
|
// fopen a file, mounting volumes and making parent dirs as necessary.
|
|
|
|
FILE* fopen_path(const char *path, const char *mode);
|
|
|
|
|
2013-05-14 20:03:02 +02:00
|
|
|
void ui_print(const char* format, ...);
|
|
|
|
|
2015-02-10 23:46:14 +01:00
|
|
|
bool is_ro_debuggable();
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
#endif // RECOVERY_COMMON_H
|