2018-02-21 19:36:38 +08:00
|
|
|
/**
|
2018-08-24 07:45:37 +08:00
|
|
|
* File: asset.h
|
2018-05-15 09:31:58 +08:00
|
|
|
* Author: AWTK Develop Team
|
2018-08-24 07:45:37 +08:00
|
|
|
* Brief: asset init
|
2018-02-21 19:36:38 +08:00
|
|
|
*
|
2018-05-08 10:22:32 +08:00
|
|
|
* Copyright (c) 2018 - 2018 Guangzhou ZHIYUAN Electronics Co.,Ltd.
|
2018-02-21 19:36:38 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-08-24 07:45:37 +08:00
|
|
|
#ifndef ASSET_H
|
|
|
|
#define ASSET_H
|
2018-02-21 19:36:38 +08:00
|
|
|
|
2018-12-15 17:22:05 +08:00
|
|
|
#include "tkc/types_def.h"
|
2018-02-21 19:36:38 +08:00
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2018-08-24 07:45:37 +08:00
|
|
|
ret_t assets_init(void);
|
2018-02-21 19:36:38 +08:00
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
2018-08-24 07:45:37 +08:00
|
|
|
#endif /*ASSET_H*/
|