linuxOS_D21X/source/artinchip/awtk-ui/awtk/src/debugger/debugger_global.h
2024-11-29 16:23:11 +08:00

54 lines
1.1 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* File: debugger_global.h
* Author: AWTK Develop Team
* Brief: debugger global
*
* Copyright (c) 2022 - 2022 Guangzhou ZHIYUAN Electronics Co.,Ltd.
*
* 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
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2022-01-12 Li XianJing <xianjimli@hotmail.com> created
*
*/
#ifndef TK_DEBUGGER_GLOBAL_H
#define TK_DEBUGGER_GLOBAL_H
#include "debugger/debugger_fscript.h"
BEGIN_C_DECLS
/**
* @class debugger_global_t
* @annotaion ["fake"]
* 调试器全局函数。
*/
/**
* @method debugger_global_init
* 启用调试器。
*
* @return {ret_t} 返回RET_OK表示成功否则表示失败。
*/
ret_t debugger_global_init(void);
/**
* @method debugger_global_deinit
* 禁用调试器。
*
* @return {ret_t} 返回RET_OK表示成功否则表示失败。
*/
ret_t debugger_global_deinit(void);
END_C_DECLS
#endif /*TK_DEBUGGER_GLOBAL_H*/