at_ps: Add PS module skeleton
[platform/core/telephony/tel-plugin-at_standard.git] / src / desc_at.c
1 /*
2  * tel-plugin-at_standard
3  *
4  * Copyright (c) 2012 Intel Corporation. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <ctype.h>
22 #include <string.h>
23 #include <glib.h>
24
25 #include <tcore.h>
26 #include <plugin.h>
27 #include <hal.h>
28 #include <server.h>
29
30 static gboolean on_load()
31 {
32         dbg("i'm load!");
33
34         return TRUE;
35 }
36
37 static gboolean on_init(TcorePlugin *p)
38 {
39         if (!p)
40                 return FALSE;
41
42         dbg("i'm init!");
43
44         return TRUE;
45 }
46
47 static void on_unload(TcorePlugin *p)
48 {
49         if (!p)
50                 return;
51
52         dbg("i'm unload");
53 }
54
55 struct tcore_plugin_define_desc plugin_define_desc = {
56         .name = "AT",
57         .priority = TCORE_PLUGIN_PRIORITY_HIGH + 1,
58         .version = 1,
59         .load = on_load,
60         .init = on_init,
61         .unload = on_unload
62 };