26 lines
387 B
C++
26 lines
387 B
C++
|
#include "MSN.h"
|
||
|
|
||
|
extern "C" __declspec(dllexport) CayaProtocol* protocol();
|
||
|
extern "C" __declspec(dllexport) const char* signature();
|
||
|
extern "C" __declspec(dllexport) const char* friendly_signature();
|
||
|
|
||
|
CayaProtocol*
|
||
|
protocol()
|
||
|
{
|
||
|
return (CayaProtocol*)new MSNP();
|
||
|
}
|
||
|
|
||
|
|
||
|
const char*
|
||
|
signature()
|
||
|
{
|
||
|
return kProtocolSignature;
|
||
|
}
|
||
|
|
||
|
|
||
|
const char*
|
||
|
friendly_signature()
|
||
|
{
|
||
|
return kProtocolName;
|
||
|
}
|