tizen 2.3 release
[apps/livebox/data-provider-master.git] / include / xmonitor.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 xmonitor_event {
18         XMONITOR_PAUSED,
19         XMONITOR_RESUMED,
20
21         XMONITOR_ERROR = 0xFFFFFFFF /* To specify the size of this enum */
22 };
23
24 extern int xmonitor_init(void);
25 extern void xmonitor_fini(void);
26 extern int xmonitor_update_state(int pid);
27 extern int xmonitor_add_event_callback(enum xmonitor_event event, int (*cb)(void *user_data), void *user_data);
28 extern int xmonitor_del_event_callback(enum xmonitor_event event, int (*cb)(void *user_data), void *user_data);
29 extern int xmonitor_is_paused(void);
30 extern void xmonitor_handle_state_changes(void);
31 extern int xmonitor_resume(struct client_node *client);
32 extern int xmonitor_pause(struct client_node *client);
33
34 /* End of a file */