plugin_info.c

来自「dgstation relook 400 sample code to run 」· C语言 代码 · 共 44 行

C
44
字号
/* Signal Popup for Relook400                          *//* Charles Putney                                                  *//* 18 Quinns Road                                                  *//* Shankill, Co. Dublin                                            *//* IRELAND                                                         *//*                                                                 *//* Change History                                                  *//*                                                                 *//* 24-01-2008 Start                                                   *//* * header file for common plugin... * this header should be included once in hole source file that will be linked. * * inside the header, as you can see, there is "main" function and some * variables when this plugin compiled with "PLUGIN_STANDALONE" defination. */#include "plugin/plugin.h"/* * informations about this plugin * * the first argument of "plugin_info" macro is field name. and the second one * is string that describe the field. * * followings are currently available fields. * * author	: author of this plugin * rev		: revision * desc		: short description * ldesc	: long description * */plugin_info( author,	"Charles Putney - Dublin" );plugin_info( rev,	"Version 1" );plugin_info( desc,	"Signal Popup Plugin" );plugin_info( ldesc,		"Signal Popup Plugin\n"		"for test and setup.\n"		"" );

⌨️ 快捷键说明

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