any Utility to registery non DLL files?
I need to register a IAT_YUV.ax file, I was wondering if I can use InstallLib to register it as I do with DLL files?
Thanks
Archive: any Utility to registery non DLL files?
any Utility to registery non DLL files?
I need to register a IAT_YUV.ax file, I was wondering if I can use InstallLib to register it as I do with DLL files?
Thanks
Probably (As long as it exports the DllRegister* functions)
I am sorry, but I am not to familiar with the DLLRegister functions. How can I check that they were exported correctly?
The file extension .AX usually refers to ActiveX controls, such as DirectShow filters. And these are DLL files ;)
You can register ActiveX controls using regsvr32.exe, so try something like:
ExecWait '"$SYSDIR\regsvr32.exe" /s "$INSTDIR\IAT_YUV.ax"'
${DisableX64FSRedirection}
Originally posted by LoRd_MuldeRActiveX != COM (ActiveX is to COM as TCP is to IP)
The file extension usually refers to ActiveX controls, such as DirectShow filters.