MsiRecordSetInteger

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

Microsoft documentation: Link

Last updated