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

14 lines
282 B
C++
Raw Normal View History

/*
* Copyright 2010, Alexander Botero-Lowry. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include "AIM.h"
extern "C" __declspec(dllexport) CayaProtocol *main_protocol();
CayaProtocol *main_protocol()
{
return (CayaProtocol*)new AIMProtocol();
}