53cfaecbff934b15ec1856a01e676ea2666c6cf8
[platform/core/connectivity/stc-manager.git] / include / stc-plugin.h
1 /*
2  * Copyright (c) 2016 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 __STC_PLUGIN_H__
18 #define __STC_PLUGIN_H__
19
20 #include <glib.h>
21 #include "stc-error.h"
22 #include "stc-manager.h"
23
24 typedef stc_error_e(*stc_plugin_app_state_changed_cb) (stc_cmd_type_e cmd,
25                                                        pid_t pid,
26                                                        const gchar *app_id,
27                                                        const gchar *pkg_id,
28                                                        stc_app_type_e app_type);
29
30 typedef struct {
31         int(*send_restriction_message_to_net_popup) (const char *,
32                                                      const char *,
33                                                      const char *,
34                                                      const char *,
35                                                      const char *);
36         int(*send_warn_message_to_net_popup) (const char *,
37                                               const char *,
38                                               const char *,
39                                               const char *,
40                                               const char *);
41         int (*register_state_changed_cb) (stc_s *stc,
42                                           stc_plugin_app_state_changed_cb cb,
43                                           void *data);
44         int (*deregister_state_changed_cb) (stc_s *stc);
45 } stc_plugin_s;
46
47 #endif /* __STC_PLUGIN_H__ */