telegram-purple/telegram-adium/TelegramPlugin.m

74 lines
1.6 KiB
Mathematica
Raw Permalink Normal View History

2014-11-11 20:24:30 +03:00
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
2014-11-11 20:24:30 +03:00
#import "TelegramPlugin.h"
#import "TelegramService.h"
#import "telegram-purple.h"
2014-11-13 00:45:51 +01:00
#import <tgl.h>
2014-11-11 20:24:30 +03:00
extern void purple_init_telegram_plugin();
@implementation TelegramPlugin
- (void) installPlugin
{
2014-11-13 00:45:51 +01:00
pk_path = [self getPkName];
2014-11-11 20:24:30 +03:00
purple_init_telegram_plugin();
[TelegramService registerService];
}
- (void) installLibpurplePlugin
{
}
- (void) loadLibpurplePlugin
{
}
- (void) uninstallPlugin
{
}
- (NSString *)pluginAuthor
{
return @TG_AUTHOR;
}
-(NSString *)pluginVersion
{
return @PACKAGE_VERSION;
2014-11-11 20:24:30 +03:00
}
-(NSString *)pluginDescription
{
return @TG_DESCRIPTION;
2014-11-11 20:24:30 +03:00
}
-(char*)getPkName
{
const char* utf8String = (char *)[[[NSBundle bundleForClass: [self class]] pathForResource: @"tg-server" ofType: @"pub"] UTF8String];
size_t len = strlen(utf8String) + 1;
2014-11-13 00:45:51 +01:00
char *buf = malloc(len);
2014-11-11 20:24:30 +03:00
memcpy(buf, utf8String, len);
return buf;
}
@end