aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/odr-handling-with-dylib/plugin.cpp
blob: 190388000a3c8f91d527736879365b0962f9b8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "plugin.h"
#include "service.h"

struct Proxy : public Service {
  State *proxyState;
};

Proxy *gProxyThis = 0;

extern "C" {
void plugin_init() { gProxyThis = new Proxy; }

void plugin_entry() {}
}