blob: 16e3e7c718618481bc0e2d6d09a68c98343bbfbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "ftnoir_protocol_wine.h"
#include "facetracknoir/plugin-support.h"
FTNoIR_ProtocolDll::FTNoIR_ProtocolDll()
{
}
FTNoIR_ProtocolDll::~FTNoIR_ProtocolDll()
{
}
extern "C" OPENTRACK_EXPORT Metadata* CALLING_CONVENTION GetMetadata()
{
return new FTNoIR_ProtocolDll;
}
|