filename | src/drivers/dummy.c |
changeset | 1027:4e527bc96109 |
author | nkeynes |
date | Sat Jun 13 07:12:51 2009 +0000 (14 years ago) |
permissions | -rw-r--r-- |
last change | Load plugins from the directory containing the executable first if they're there - simplifies development testing. Add dummy plugin for easy identification of the plugin directory |
file | annotate | diff | log | raw |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +00001.2 +++ b/src/drivers/dummy.c Sat Jun 13 07:12:51 2009 +00001.3 @@ -0,0 +1,22 @@1.4 +/**1.5 + * $Id$1.6 + *1.7 + * Dummy plugin that exists to mark the plugin directory (and also for testing1.8 + * purposes)1.9 + *1.10 + * Copyright (c) 2009 Nathan Keynes.1.11 + *1.12 + * This program is free software; you can redistribute it and/or modify1.13 + * it under the terms of the GNU General Public License as published by1.14 + * the Free Software Foundation; either version 2 of the License, or1.15 + * (at your option) any later version.1.16 + *1.17 + * This program is distributed in the hope that it will be useful,1.18 + * but WITHOUT ANY WARRANTY; without even the implied warranty of1.19 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1.20 + * GNU General Public License for more details.1.21 + */1.22 +1.23 +#include "plugin.h"1.24 +1.25 +DEFINE_PLUGIN( PLUGIN_NONE, "dummy", NULL );
.