15 Star 144 Fork 23

Open-SkyEye/open-skyeye

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
core-init-utils.h 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
/* Copyright (C) 2010 The Android Open Source Project
**
** This software is licensed under the terms of the GNU General Public
** License version 2, as published by the Free Software Foundation, and
** may be copied, distributed, and modified under those terms.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
*/
/*
* Contains declarations of routines and that are used in the course
* of the emulator's core initialization.
*/
#ifndef QEMU_ANDROID_CORE_INIT_UI_UTILS_H_
#define QEMU_ANDROID_CORE_INIT_UI_UTILS_H_
/* Formats and sends back to the UI message indicating successful completion
* of the core initialization.
*/
void android_core_init_completed(void);
/* Builds and sends initialization failure message back to the UI that started
* the core. After that exits the process.
* Param:
* Parameters match those that are passed to sprintf routine to format an
* error message for the error that has occured.
*/
void android_core_init_failure(const char* fmt, ...);
/* Sends successful initialization completion message back to the UI, and exits
* the application.
* Param:
* exit_status Exit status, that will be passed to the "exit" routine.
*/
void android_core_init_exit(int exit_status);
#endif // QEMU_ANDROID_CORE_INIT_UI_UTILS_H_
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/open-skyeye/code.git
git@gitee.com:open-skyeye/code.git
open-skyeye
code
open-skyeye
master

搜索帮助