Update pkgmgr-info APIs
[platform/core/appfw/pkgmgr-info.git] / src / manager / pkginfo_manager.h
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __MANAGER_PKGINFO_MANAGER__
18 #define __MANAGER_PKGINFO_MANAGER__
19
20 #include <sys/types.h>
21
22 #include <glib.h>
23
24 #include "pkgmgrinfo_private.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 int _pkginfo_get_packages(uid_t uid,
31                 pkgmgrinfo_filter_x *filter, int flag, GHashTable *packages);
32
33 int _appinfo_get_applications(uid_t db_uid, uid_t uid,
34                 pkgmgrinfo_filter_x *filter, int flag, GHashTable *packages);
35
36 char *_appinfo_get_localed_label(const char *appid, const char *locale, 
37                 uid_t uid);
38
39 int _appinfo_get_datacontrol_info(const char *providerid, 
40                 const char *type, uid_t uid, char **appid, char **access);
41
42 #ifdef __cplusplus
43 }
44 #endif
45 #endif  /* __MANAGER_PKGINFO_MANAGER__ */