.
Summary
TODO - a short description
C# Signature:
[DllImport("msi.dll", CharSet = CharSet .Unicode)]
Crashes if CharSet = CharSet .Unicode in above statement is not removed.
static extern int MsiDatabaseCommit(IntPtr hDatabase);
VB Signature:
Declare Function MsiDatabaseCommit Lib "msi.dll" (TODO) As TODO
User-Defined Types:
None.
Alternative Managed API:
Do you know one? Please contribute it!
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
Sample can be found at MsiRecordSetString .
Documentation
Click to read this page 4/6/2008 7:23:14 AM - anonymous
Click to read this page 4/6/2008 7:23:14 AM - anonymous
Click to read this page 4/6/2008 7:23:14 AM - anonymous
Click to read this page 4/6/2008 7:23:14 AM - anonymous
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.
1/13/2008 4:00:13 AM - Damon Carr-72.43.165.29
Copies a string into the designated field.
7/11/2010 1:49:52 PM - -167.100.118.140