Chat-O-Matic/protocols/gtalk/main.cpp

9 lines
170 B
C++
Raw Normal View History

#include "GoogleTalk.h"
extern "C" __declspec(dllexport) CayaProtocol *main_protocol ();
CayaProtocol *main_protocol ()
{
return (CayaProtocol *)(new GoogleTalk());
}