1#include "plugin.h"
2#include "service.h"
3
4struct Proxy : public Service {
5 State *proxyState;
6};
7
8Proxy *gProxyThis = 0;
9
10extern "C" {
11void plugin_init() { gProxyThis = new Proxy; }
12
13void plugin_entry() {}
14}
15

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