aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/odr-handling-with-dylib/service.h
blob: 37c6b9aeb2d9b893e21a2031c561ff6070bd6ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SERVICE_H_IN
#define SERVICE_H_IN

struct ServiceAux;

struct Service {
  struct State;
  bool start(State *) { return true; }

#ifdef HIDE_FROM_PLUGIN
  int __resv1;
#endif // !HIDE_FROM_PLUGIN

  Service *__owner;
  ServiceAux *aux;
};

void exported();

#endif