MsiRecordGetInteger

[DllImport("msi.dll", CharSet = CharSet.Auto)]
public static extern int MsiRecordGetInteger(
   IntPtr hRecord,
   int iField
);

Microsoft documentation: Link

Last updated