免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 850 | 回复: 0
打印 上一主题 下一主题

Base C Plugin for Pidgin [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-25 11:43 |只看该作者 |倒序浏览

               
       
       
       
       
       
       
(1)准备
安装libpurple,它包含很多开发用的文件,当然还要安装Pidgin或者Finch
sudo
        apt-get build-dep pidgin
mkdir
        ~/development
cd
        ~/development
tar
        xvf pidgin-2.6.2.tar.bz2
cd
        pidgin-2.6.2
./configure
make
(2)
        第一个插件程序
cd
        ~/development/pidgin-2.6.2/libpurple/plugins
vim
        helloworldbysam.c
#ifdef
        HAVE_CONFIG_H
       
#
        include  
       
#endif
       
       
#ifndef
        PURPLE_PLUGINS
       
#
        define PURPLE_PLUGINS
       
#endif
       
       
#include
         
       
#ifndef
        G_GNUC_NULL_TERMINATED
       
#
        if __GNUC__ >= 4
       
#
         define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
       
#
        else
       
#
         define G_GNUC_NULL_TERMINATED
       
#
        endif
       
#endif
       
       
#include
         
       
#include
         
       
#include
         
       
PurplePlugin
        *helloworld_plugin = NULL;
       
static
        void
       
plugin_action_test_cb(PurplePluginAction
        *action)
       
{
       
       
   
        purple_notify_message(helloworld_plugin,
        PURPLE_NOTIFY_MSG_INFO,
       
            "Plugin
        Actions Test", "This is a plugin actions test :)",
        NULL, NULL, NULL);
       
}
       
       
static
        GList *
       
plugin_actions(PurplePlugin
        *plugin, gpointer context)
       
{
       
       
    GList
        *list = NULL;
       
    PurplePluginAction
        *action = NULL;
       
    action
        = purple_plugin_action_new("Plugin Action Test",
        plugin_action_test_cb);
       
    list
        = g_list_append(list, action);
       
    return
        list;
       
}
       
       
static
        gboolean
       
plugin_load(PurplePlugin
        *plugin)
       
{
       
       
   
        purple_notify_message(plugin,
        PURPLE_NOTIFY_MSG_INFO, "Hello World!",
       
            "This
        is the Hello World! plugin :)", NULL, NULL, NULL);
       
    helloworld_plugin
        = plugin;
       
    return
        TRUE;
       
}
       
       
static
        PurplePluginInfo info = {
       
    PURPLE_PLUGIN_MAGIC,
       
       
    PURPLE_MAJOR_VERSION,
       
       
    PURPLE_MINOR_VERSION,
       
       
    PURPLE_PLUGIN_STANDARD,
       
       
    NULL,
       
       
    0,
       
       
    NULL,
       
       
   
        PURPLE_PRIORITY_DEFAULT,
       
    "core-hello_world",
       
       
    "Hello
        World!",
       
    DISPLAY_VERSION,
       
       
    "Hello
        World Plugin",
       
    "Hello
        World Plugin",
       
    "Sam
        Shen " ,
   
        "http://blog.chinaunix.net/u2/78437/",
       
       
    plugin_load,
       
       
    NULL,
       
       
    NULL,
       
       
    NULL,
       
       
    NULL,
       
       
    NULL,
       
       
    plugin_actions,
       
       
    NULL,
       
       
    NULL,
       
       
    NULL,
       
       
    NULL,
       
       
};
       
       
static
        void
       
init_plugin(PurlePlugin
        *plugin)
       
{
       
       
}
       
       
PURPLE_INIT_PLUGIN(hello_world,
        init_plugin, info)
       
编译
make
        helloworldbysam.so
安装
mkdir
        ~/.purple/plugins
cp
        helloworldbysam.so ~/.purple/plugins
测试
打开工具->插件,启用新创建的插件,然后重启pidgin
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/78437/showart_2059758.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP