]> git.sesse.net Git - vlc/blobdiff - src/misc/modules_builtin.h.in
* src/input/input.c: fixed nasty bug with preparsing where a mutex was used uninitial...
[vlc] / src / misc / modules_builtin.h.in
index 90c399b76c8516b4237ab29926755b0c3ef1e369..333837c1fe1c5e26ec2603d0801fe313f16c2ac0 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * modules_builtin.h: built-in modules list
  *****************************************************************************
- * Copyright (C) 2001 VideoLAN
+ * Copyright (C) 2001 the VideoLAN team
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -9,7 +9,7 @@
  * 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
  *
  * 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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #define ALLOCATE_BUILTIN( NAME ) \
-    AllocateBuiltinModule( InitModule__MODULE_ ## NAME, \
-                           ActivateModule__MODULE_ ## NAME, \
-                           DeactivateModule__MODULE_ ## NAME );
+    AllocateBuiltinModule( p_this, vlc_entry__ ## NAME );
 
-/* Add stuff here */
+/* We also consider the main program as a module (useful for config stuff) */
+int vlc_entry__main( module_t* );
 
+/* Add stuff here */