]> git.sesse.net Git - vlc/blobdiff - src/misc/modules_plugin.h
* ALL: new module API. Makes a few things a lot simpler, and we gain
[vlc] / src / misc / modules_plugin.h
index 16d21c934523969c002a0f6a2d00c1d9d576a12e..01d78f02810a455271a10171d233a78c944feef8 100644 (file)
@@ -208,7 +208,6 @@ static inline const char * module_error( char *psz_buffer )
     (p_symbols)->__input_Tell_inner = __input_Tell; \
     (p_symbols)->input_DumpStream_inner = input_DumpStream; \
     (p_symbols)->input_OffsetToTime_inner = input_OffsetToTime; \
-    (p_symbols)->input_ChangeES_inner = input_ChangeES; \
     (p_symbols)->input_ToggleES_inner = input_ToggleES; \
     (p_symbols)->input_ChangeArea_inner = input_ChangeArea; \
     (p_symbols)->input_ChangeProgram_inner = input_ChangeProgram; \
@@ -229,6 +228,8 @@ static inline const char * module_error( char *psz_buffer )
     (p_symbols)->input_ClockManageControl_inner = input_ClockManageControl; \
     (p_symbols)->input_ClockManageRef_inner = input_ClockManageRef; \
     (p_symbols)->input_ClockGetTS_inner = input_ClockGetTS; \
+    (p_symbols)->input_InfoCategory_inner = input_InfoCategory; \
+    (p_symbols)->input_AddInfo_inner = input_AddInfo; \
     (p_symbols)->input_BuffersEnd_inner = input_BuffersEnd; \
     (p_symbols)->input_NewBuffer_inner = input_NewBuffer; \
     (p_symbols)->input_ReleaseBuffer_inner = input_ReleaseBuffer; \
@@ -250,8 +251,8 @@ static inline const char * module_error( char *psz_buffer )
     (p_symbols)->input_ReadTS_inner = input_ReadTS; \
     (p_symbols)->input_DemuxPS_inner = input_DemuxPS; \
     (p_symbols)->input_DemuxTS_inner = input_DemuxTS; \
-    (p_symbols)->input_FDClose_inner = input_FDClose; \
-    (p_symbols)->input_FDNetworkClose_inner = input_FDNetworkClose; \
+    (p_symbols)->__input_FDClose_inner = __input_FDClose; \
+    (p_symbols)->__input_FDNetworkClose_inner = __input_FDNetworkClose; \
     (p_symbols)->input_FDRead_inner = input_FDRead; \
     (p_symbols)->input_FDNetworkRead_inner = input_FDNetworkRead; \
     (p_symbols)->input_FDSeek_inner = input_FDSeek; \
@@ -265,7 +266,7 @@ static inline const char * module_error( char *psz_buffer )
     (p_symbols)->GetLang_2B_inner = GetLang_2B; \
     (p_symbols)->DecodeLanguage_inner = DecodeLanguage; \
     (p_symbols)->__module_Need_inner = __module_Need; \
-    (p_symbols)->module_Unneed_inner = module_Unneed; \
+    (p_symbols)->__module_Unneed_inner = __module_Unneed; \
     (p_symbols)->mstrtime_inner = mstrtime; \
     (p_symbols)->mdate_inner = mdate; \
     (p_symbols)->mwait_inner = mwait; \