Search
lxdream.org :: lxdream/src/drivers/dummy.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/dummy.c
changeset 1027:4e527bc96109
author nkeynes
date Sun Mar 04 21:10:12 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Move glsl loading into common gl code, and set a display capability flag
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/drivers/dummy.c Sun Mar 04 21:10:12 2012 +1000
1.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 testing
1.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 modify
1.13 + * it under the terms of the GNU General Public License as published by
1.14 + * the Free Software Foundation; either version 2 of the License, or
1.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 of
1.19 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.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 );
.