tizen 2.3 release
[apps/livebox/data-provider-master.git] / include / pkgmgr.h
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 enum pkgmgr_event_type {
18         PKGMGR_EVENT_DOWNLOAD,
19         PKGMGR_EVENT_INSTALL,
20         PKGMGR_EVENT_UPDATE,
21         PKGMGR_EVENT_UNINSTALL,
22         PKGMGR_EVENT_RECOVER
23 };
24
25 enum pkgmgr_status {
26         PKGMGR_STATUS_START,
27         PKGMGR_STATUS_PROCESSING,
28         PKGMGR_STATUS_COMMAND,
29         PKGMGR_STATUS_END,
30         PKGMGR_STATUS_ERROR
31 };
32
33 extern int pkgmgr_init(void);
34 extern int pkgmgr_fini(void);
35
36 extern int pkgmgr_add_event_callback(enum pkgmgr_event_type type, int (*cb)(const char *pkgname, enum pkgmgr_status status, double value, void *data), void *data);
37
38 extern void *pkgmgr_del_event_callback(enum pkgmgr_event_type type, int (*cb)(const char *pkgname, enum pkgmgr_status status, double value, void *data), void *data);
39
40 /* End of a file */