Search
lxdream.org :: lxdream/src/drivers/dummy.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/dummy.c
changeset 1027:4e527bc96109
author nkeynes
date Fri May 29 18:47:05 2015 +1000 (8 years ago)
permissions -rw-r--r--
last change Fix test case
file annotate diff log raw
nkeynes@1027
     1
/**
nkeynes@1027
     2
 * $Id$
nkeynes@1027
     3
 *
nkeynes@1027
     4
 * Dummy plugin that exists to mark the plugin directory (and also for testing
nkeynes@1027
     5
 * purposes)
nkeynes@1027
     6
 *
nkeynes@1027
     7
 * Copyright (c) 2009 Nathan Keynes.
nkeynes@1027
     8
 *
nkeynes@1027
     9
 * This program is free software; you can redistribute it and/or modify
nkeynes@1027
    10
 * it under the terms of the GNU General Public License as published by
nkeynes@1027
    11
 * the Free Software Foundation; either version 2 of the License, or
nkeynes@1027
    12
 * (at your option) any later version.
nkeynes@1027
    13
 *
nkeynes@1027
    14
 * This program is distributed in the hope that it will be useful,
nkeynes@1027
    15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nkeynes@1027
    16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
nkeynes@1027
    17
 * GNU General Public License for more details.
nkeynes@1027
    18
 */
nkeynes@1027
    19
nkeynes@1027
    20
#include "plugin.h"
nkeynes@1027
    21
nkeynes@1027
    22
DEFINE_PLUGIN( PLUGIN_NONE, "dummy", NULL );
.