linuxOS_D21X/source/artinchip/awtk-ui/awtk/src/debugger/debugger_global.h

54 lines
1.1 KiB
C
Raw Normal View History

2024-11-29 08:23:11 +00:00
/**
* 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*/