blob: 4b00d7dc5a0b3a45967bfbfa537f1d99508c5ef0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include "ftnoir_protocol_wine.h"
#include <QDebug>
#include "facetracknoir/plugin-support.h"
FTNoIR_ProtocolDll::FTNoIR_ProtocolDll() {
}
FTNoIR_ProtocolDll::~FTNoIR_ProtocolDll()
{
}
////////////////////////////////////////////////////////////////////////////////
// Factory function that creates instances if the Protocol object.
// Export both decorated and undecorated names.
// GetProtocolDll - Undecorated name, which can be easily used with GetProcAddress
// Win32 API function.
// _GetProtocolDll@0 - Common name decoration for __stdcall functions in C language.
//#pragma comment(linker, "/export:GetProtocolDll=_GetProtocolDll@0")
extern "C" FTNOIR_PROTOCOL_BASE_EXPORT Metadata* CALLING_CONVENTION GetMetadata()
{
return new FTNoIR_ProtocolDll;
}
|