InnoSetup MsiQueryProductState
我想用 Inno 安装程序替换 VS 安装程序。请检查是否安装了旧版本,我发现了“MsiQueryProductState”方法。 我发现了几个如下所示的示例:
function MsiQueryProductState(ProductCode: string): integer;
external '[email protected] stdcall';
function MsiConfigureProduct(ProductCode: string;
iInstallLevel: integer; eInstallState: integer): integer;
external '[email protected] stdcall';
const
INSTALLSTATE_DEFAULT = 5;
INSTALLLEVEL_MAXIMUM = $ffff;
INSTALLSTATE_ABSENT = 2;
检查产品总是返回 2 而不是所需的 5 值 (INSTALLSTATE_DEFAULT)
我发现了错误,我会将其发布为答案...
谢谢 Freddy
I want to replace the VS setup by the Inno Setup. Do check if an old version is installed i found the 'MsiQueryProductState' method.
I found several examples looking like this:
function MsiQueryProductState(ProductCode: string): integer;
external '[email protected] stdcall';
function MsiConfigureProduct(ProductCode: string;
iInstallLevel: integer; eInstallState: integer): integer;
external '[email protected] stdcall';
const
INSTALLSTATE_DEFAULT = 5;
INSTALLLEVEL_MAXIMUM = $ffff;
INSTALLSTATE_ABSENT = 2;
Checking for the product always returned 2 and not the required 5 value (INSTALLSTATE_DEFAULT)
I found the mistake, I'll post it as an answer ...
Thank Freddy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是 InnoSetup 的 Unicode 版本与函数原型的 ANSI 版本混合在一起。将
MsiQueryProductStateA
替换为MsiQueryProductStateW
就足够了。如果您使用这个有条件定义的脚本,InnoSetup 编译预处理器将找到函数的正确版本(Unicode 或 ANSI),具体取决于您何时使用 ANSI 或 Unicode InnoSetup。
The problem was the Unicode version of the InnoSetup mixed with the ANSI version of function prototype. It was enough to replace the
MsiQueryProductStateA
withMsiQueryProductStateW
.If you use this conditionally defined script, InnoSetup compilation preprocessor will find the right version for the functions (Unicode or ANSI) depending on when you're using ANSI or Unicode InnoSetup.