Possible to call DLL function in uninstaller if DLL has dontcopy flag?
问题 As the title says I need a function in my DLL which I need to call while uninstalling. The DLL is included this way #define myProgData "C:\ProgramData\Foo\Bar" [Files] Source: "mydll.dll"; Flags: dontcopy I already use one function while installing and now I want to know if I can use the same DLL for uninstall or does the DLL have to be copied so the uninstaller can access it? I've tried a simple call already but got the Could not call proc - Exception So I'm looking for the reason for this.