1 | #ifndef SERVICE_H_IN |
---|---|
2 | #define SERVICE_H_IN |
3 | |
4 | struct ServiceAux; |
5 | |
6 | struct Service { |
7 | struct State; |
8 | bool start(State *) { return true; } |
9 | |
10 | #ifdef HIDE_FROM_PLUGIN |
11 | int __resv1; |
12 | #endif // !HIDE_FROM_PLUGIN |
13 | |
14 | Service *__owner; |
15 | ServiceAux *aux; |
16 | }; |
17 | |
18 | void exported(); |
19 | |
20 | #endif |
21 |