]> git.sesse.net Git - vlc/blobdiff - src/misc/modules_builtin.h.in
svn:keywords
[vlc] / src / misc / modules_builtin.h.in
index 1183f9bbff4e7fae8cacc214772add5d4b628dc2..bf5a996d8a78b4f5e90c1b1ab18ddbfe717ef56a 100644 (file)
@@ -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
  *****************************************************************************/
 
 #define ALLOCATE_BUILTIN( NAME ) \
-    AllocateBuiltinModule( p_this, InitModule__MODULE_ ## NAME, \
-                                   ActivateModule__MODULE_ ## NAME, \
-                                   DeactivateModule__MODULE_ ## NAME );
+    AllocateBuiltinModule( p_this, vlc_entry__ ## NAME );
 
 /* We also consider the main program as a module (useful for config stuff) */
-int InitModule__MODULE_main( module_t* );
-int ActivateModule__MODULE_main( module_t* );
-int DeactivateModule__MODULE_main( module_t* );
+int vlc_entry__main( module_t* );
 
 /* Add stuff here */