brintos

brintos / llvm-project-archived public Read only

0
0
Text · 272 B · 37c6b9a Raw
21 lines · c
1#ifndef SERVICE_H_IN2#define SERVICE_H_IN3 4struct ServiceAux;5 6struct Service {7  struct State;8  bool start(State *) { return true; }9 10#ifdef HIDE_FROM_PLUGIN11  int __resv1;12#endif // !HIDE_FROM_PLUGIN13 14  Service *__owner;15  ServiceAux *aux;16};17 18void exported();19 20#endif21