there is a continuous calling in vlc:
module_Init->module_InitStatic(vlc_entry__main)->vlc_plugin_describe (vlc_plugin_cb entry)->entry (vlc_plugin_setter, &module)
vlc_entry__main is of the most importance. so far as i know,the variable vlc_entry__main is a function defined in the header file modules.h.
but i dont find where is it initialized. if not initialized, the calling entry (vlc_plugin_setter, &module),which in fact is vlc_entry__main (vlc_plugin_setter, &module) is obviously wrong.
can anybody tell me how or where is it initialized?i will be thankful.