ok with the x86 dll everything works just fine, but the x64 dll doesn't get registered.
Section "VSFiler x86" SEC01
SetOutPath "$WINDIR"
SetOverwrite on
File "VSFilter.dll"
REGDLL "VSFilter.dll"
SectionEnd
Section /o "VSFilter x64" SEC02
SetOverwrite on
SetOutPath "$WINDIR"
File "VSFilter_x64.dll"
REGDLL "VSFilter_x64.dll"
SectionEnd
Section Uninstall
Delete "$WINDIR\${PRODUCT_NAME}_Unnistaller.exe"
UnRegDll "$WINDIR\VSFilter_x64.dll"
UnRegDll "$WINDIR\VSFilter.dll"
Delete "$WINDIR\VSFilter_x64.dll"
Delete "$WINDIR\VSFilter.dll"
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
SetAutoClose false
SectionEnd
I don't know what the error might be.
does somebody knows how I can fix this thing?