Commit 2512846d authored by Damien Fouilleul's avatar Damien Fouilleul

added ActiveX control to the VLC installer

parent 0391af52
No related merge requests found
...@@ -188,14 +188,21 @@ SectionEnd ...@@ -188,14 +188,21 @@ SectionEnd
Section /o "Mozilla plugin" SEC03 Section /o "Mozilla plugin" SEC03
SectionIn 2 3 SectionIn 2 3
File /r mozilla File /r mozilla
WriteRegStr HKLM \ WriteRegStr HKLM \
SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION} \ SOFTWARE\MozillaPlugins\@videolan.org/vlc,version=${VERSION} \
"Path" '"$INSTDIR\mozilla\npvlc.dll"' "Path" '"$INSTDIR\mozilla\npvlc.dll"'
SectionEnd SectionEnd
SubSection "File type associations" SEC04 Section /o "ActiveX plugin" SEC04
SectionIn 2 3
SetOutPath $SYSDIR
File activex\axvlc.dll
RegDLL $SYSDIR\axvlc.dll
SectionEnd
SubSection "File type associations" SEC05
; Make sure we have the same list in uninstall ; Make sure we have the same list in uninstall
!insertmacro RegisterExtensionSection ".a52" !insertmacro RegisterExtensionSection ".a52"
!insertmacro RegisterExtensionSection ".aac" !insertmacro RegisterExtensionSection ".aac"
...@@ -264,6 +271,8 @@ SectionEnd ...@@ -264,6 +271,8 @@ SectionEnd
!insertmacro MUI_DESCRIPTION_TEXT ${SEC03} \ !insertmacro MUI_DESCRIPTION_TEXT ${SEC03} \
"The VLC mozilla plugin" "The VLC mozilla plugin"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC04} \ !insertmacro MUI_DESCRIPTION_TEXT ${SEC04} \
"The VLC ActiveX plugin"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC05} \
"Sets VLC media player as the default application for the specified file type" "Sets VLC media player as the default application for the specified file type"
!insertmacro MUI_FUNCTION_DESCRIPTION_END !insertmacro MUI_FUNCTION_DESCRIPTION_END
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment