mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
35 lines
706 B
C
35 lines
706 B
C
/**
|
|
* File: resource.h
|
|
* Author: Li XianJing <xianjimli@hotmail.com>
|
|
* Brief: resource init
|
|
*
|
|
* Copyright (c) 2018 - 2018 Li XianJing <xianjimli@hotmail.com>
|
|
*
|
|
* 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 RESOURCE_H
|
|
#define RESOURCE_H
|
|
|
|
#include "base/types_def.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
ret_t resource_init(void);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif/*RESOURCE_H*/
|
|
|