Modify it to adjust Tizen IVI enviroment
[platform/upstream/kmscon.git] / src / kmscon_module_interface.h
1 /*
2  * kmscon - Module Interface
3  *
4  * Copyright (c) 2012-2013 David Herrmann <dh.herrmann@googlemail.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files
8  * (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25
26 /*
27  * Public Module Interface
28  */
29
30 #ifndef KMSCON_MODULE_INTERFACE_H
31 #define KMSCON_MODULE_INTERFACE_H
32
33 #include <stdbool.h>
34 #include <stdlib.h>
35 #include "kmscon_module.h"
36 #include "shl_dlist.h"
37 #include "shl_githead.h"
38 #include "shl_misc.h"
39
40 struct kmscon_module_info {
41         const char *githead;
42         const char *date;
43         const char *time;
44         int (*init) (void);
45         int (*load) (void);
46         void (*unload) (void);
47         void (*exit) (void);
48 };
49
50 struct kmscon_module {
51         struct kmscon_module_info info;
52         struct shl_dlist list;
53         unsigned long ref;
54         bool loaded;
55         void *handle;
56         char *file;
57 };
58
59 #define KMSCON_MODULE(_init, _load, _unload, _exit) \
60         struct kmscon_module module = { \
61                 .info = { \
62                         .githead = shl_git_head, \
63                         .date = __DATE__, \
64                         .time = __TIME__, \
65                         .init = _init, \
66                         .load = _load, \
67                         .unload = _unload, \
68                         .exit = _exit, \
69                 }, \
70         };
71
72 SHL_EXPORT
73 extern struct kmscon_module module;
74 #define KMSCON_THIS_MODULE (&module)
75
76 #endif /* KMSCON_MODULE_INTERFACE_H */