simple.c

来自「Linux下的多协议即时通讯程序源代码」· C语言 代码 · 共 67 行

C
67
字号
#include "internal.h"#include "debug.h"#include "plugin.h"#include "version.h"/** Plugin id : type-author-name (to guarantee uniqueness) */#define SIMPLE_PLUGIN_ID "core-ewarmenhoven-simple"static gbooleanplugin_load(PurplePlugin *plugin){	purple_debug(PURPLE_DEBUG_INFO, "simple", "simple plugin loaded.\n");	return TRUE;}static gbooleanplugin_unload(PurplePlugin *plugin){	purple_debug(PURPLE_DEBUG_INFO, "simple", "simple plugin unloaded.\n");	return TRUE;}static PurplePluginInfo info ={	PURPLE_PLUGIN_MAGIC,	PURPLE_MAJOR_VERSION,	PURPLE_MINOR_VERSION,	PURPLE_PLUGIN_STANDARD,                             /**< type           */	NULL,                                             /**< ui_requirement */	0,                                                /**< flags          */	NULL,                                             /**< dependencies   */	PURPLE_PRIORITY_DEFAULT,                            /**< priority       */	SIMPLE_PLUGIN_ID,                                 /**< id             */	N_("Simple Plugin"),                              /**< name           */	VERSION,                                          /**< version        */	                                                  /**  summary        */	N_("Tests to see that most things are working."),	                                                  /**  description    */	N_("Tests to see that most things are working."),	"Eric Warmenhoven <eric@warmenhoven.org>",        /**< author         */	PURPLE_WEBSITE,                                     /**< homepage       */	plugin_load,                                      /**< load           */	plugin_unload,                                    /**< unload         */	NULL,                                             /**< destroy        */	NULL,                                             /**< ui_info        */	NULL,                                             /**< extra_info     */	NULL,	NULL,	/* Padding */	NULL,	NULL,	NULL,	NULL};static voidinit_plugin(PurplePlugin *plugin){}PURPLE_INIT_PLUGIN(simple, init_plugin, info)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?