mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
34 lines
673 B
C
34 lines
673 B
C
/**
|
|
* File: asset.h
|
|
* Author: AWTK Develop Team
|
|
* Brief: asset init
|
|
*
|
|
* Copyright (c) 2018 - 2019 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:
|
|
* ================================================================
|
|
* 2018-02-03 Li XianJing <xianjimli@hotmail.com> created
|
|
*
|
|
*/
|
|
|
|
#ifndef ASSET_H
|
|
#define ASSET_H
|
|
|
|
#include "tkc/types_def.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
ret_t assets_init(void);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /*ASSET_H*/
|