Desktop Functions: Smart Device Functions:
|
MsiGetProductInfo (msi)
C# Signature:
[DllImport("msi.dll", CharSet=CharSet.Unicode)] VB Signature:
Declare Auto Function MsiGetProductInfo Lib "msi.dll" (ByVal product As String, ByVal property As String, ByVal valueBuf As StringBuilder, ByRef len As Long) As Int32 User-Defined Types:None. Alternative Managed API:Do you know one? Please contribute it! Notes:None. Tips & Tricks:Please add some! Sample Code:Int32 len = 512; System.Text.StringBuilder builder = new System.Text.StringBuilder(len); MsiGetProductInfo("{4B3334CE-06D9-4446-BBC5-EB4C9D75BFF6}", "InstallSource", builder , ref len); Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|