26 lines
400 B
C++
26 lines
400 B
C++
#include "GoogleTalk.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 GoogleTalk();
|
|
}
|
|
|
|
|
|
const char*
|
|
signature()
|
|
{
|
|
return kProtocolSignature;
|
|
}
|
|
|
|
|
|
const char*
|
|
friendly_signature()
|
|
{
|
|
return kProtocolName;
|
|
}
|