tizen 2.4 release
[framework/appfw/pkgmgr-info.git] / src / pkgmgrinfo_resource.c
1 #include "pkgmgrinfo_private.h"
2 #include "pkgmgr_parser_resource.h"
3
4 API int pkgmgrinfo_resource_open(const char *filepath, resource_data_t **data)
5 {
6         return pkgmgr_resource_parser_open(filepath, data);
7 }
8
9 API int pkgmgrinfo_resource_close(resource_data_t *data)
10 {
11         return pkgmgr_resource_parser_close(data);
12 }
13