1#ifndef SERVICE_H_IN
2#define SERVICE_H_IN
3
4struct ServiceAux;
5
6struct 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
18void exported();
19
20#endif
21

source code of lldb/test/API/lang/cpp/odr-handling-with-dylib/service.h