blob: 190388000a3c8f91d527736879365b0962f9b8d1 [file] [log] [blame]
#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() {}
}