X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc%2Fmodules_builtin.h.in;h=bf5a996d8a78b4f5e90c1b1ab18ddbfe717ef56a;hb=4d7e2552167275bbbc948532e079f52b418eb89e;hp=2c0497261ea2b556a7c96a096a5f4dd54e1cb49c;hpb=c40571df602ed76eaf7971130f212f4a79a3f5c5;p=vlc diff --git a/src/misc/modules_builtin.h.in b/src/misc/modules_builtin.h.in index 2c0497261e..bf5a996d8a 100644 --- a/src/misc/modules_builtin.h.in +++ b/src/misc/modules_builtin.h.in @@ -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 @@ -21,13 +21,9 @@ *****************************************************************************/ #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 */