アプリをアンインストールしたときに、.iss に 2 つの dll をインポートしたいと考えています。これを行う方法が見つかりません。
procedure Installed();
external 'Installed@files:StatisticInstallInfo.dll,adcore.dll cdecl setuponly ';
procedure Uninstalled();
external 'Uninstalled@{app}\StatisticInstallInfo.dll cdecl uninstallonly';
輸入adcore.dll
手続きUninstalled
もお願いします。そして、以下に示すように失敗しました。
[Files]
Source: {#MyDefaultPackDir}\adcore.dll; DestDir: "{app}"
Source: {#MyDefaultPackDir}\StatisticInstallInfo.dll; DestDir: "{app}"
[Code]
procedure Uninstalled();
external 'Uninstalled@files:StatisticInstallInfo.dll,adcore.dll cdecl uninstallonly';
それは動作しません。
Installed()
とUninstalled()
にStatisticInstallInfo.dll
依存しadcore.dll
ます。