]> git.sesse.net Git - vlc/blobdiff - src/misc/modules_builtin.h.in
* prepare 0.8.2-test3
[vlc] / src / misc / modules_builtin.h.in
index 2c0497261ea2b556a7c96a096a5f4dd54e1cb49c..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( 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 */