コード例 #1
0
ファイル: MsiInterop.cs プロジェクト: jkuemerle/MsiInterop
        public static extern MsiError MsiConfigureProductEx(string product,
			MsiInstallLevel level, MsiInstallState installState, string commandLine);
コード例 #2
0
ファイル: WindowsInstaller.cs プロジェクト: mloar/wipt
 /// <summary>Blah</summary>
 public static uint ConfigureProduct(
     Guid ProductCode, MsiInstallLevel InstallLevel, MsiInstallState InstallState, string CommandLine)
 {
     return MsiConfigureProductEx("{" + ProductCode.ToString().ToUpper() + "}", (int)InstallLevel,
       (int)InstallState, CommandLine);
 }
コード例 #3
0
ファイル: MsiInterop.cs プロジェクト: jkuemerle/MsiInterop
        public static extern MsiError MsiConfigureProduct(string product,
			MsiInstallLevel level, MsiInstallState installState);