null.c 1.55 KB
Newer Older
Sam Hocevar's avatar
 
Sam Hocevar committed
1 2 3
/*****************************************************************************
 * null.c : NULL module for vlc
 *****************************************************************************
4
 * Copyright (C) 2000-2001 VideoLAN
5
 * $Id: null.c,v 1.8 2002/07/31 20:56:51 sam Exp $
Sam Hocevar's avatar
 
Sam Hocevar committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * Authors: Samuel Hocevar <sam@zoy.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
 *****************************************************************************/

/*****************************************************************************
 * Preamble
 *****************************************************************************/
27
#include <vlc/vlc.h>
Sam Hocevar's avatar
 
Sam Hocevar committed
28 29

/*****************************************************************************
30
 * Module descriptor.
Sam Hocevar's avatar
 
Sam Hocevar committed
31
 *****************************************************************************/
32 33 34
vlc_module_begin();
    set_description( _("the module that does nothing") );
vlc_module_end();
Sam Hocevar's avatar
 
Sam Hocevar committed
35