2010-05-12 16:48:47 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2010, Alexander Botero-Lowry. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
|
2010-05-12 15:42:46 -05:00
|
|
|
#include "AIM.h"
|
|
|
|
|
2010-05-12 16:48:47 -05:00
|
|
|
extern "C" __declspec(dllexport) CayaProtocol *main_protocol();
|
2010-05-12 15:42:46 -05:00
|
|
|
|
2010-05-12 16:48:47 -05:00
|
|
|
CayaProtocol *main_protocol()
|
2010-05-12 15:42:46 -05:00
|
|
|
{
|
2010-05-12 16:48:47 -05:00
|
|
|
return (CayaProtocol*)new AIMProtocol();
|
2010-05-12 15:42:46 -05:00
|
|
|
}
|