StructLayout(LayoutKind.Sequential)]
struct MSIFILEHASHINFO
{
public int dwFileHashInfoSize;
public int dwData0;
public int dwData1;
public int dwData2;
public int dwData3;
}
class Program
{
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
static extern int MsiGetFileHash(string szFilePath, int dwOptions,
ref MSIFILEHASHINFO pHash);
static void Main(string[] args)
{
// Set the dwFileHashInfoSize to 20 i.e. 5*4
MSIFILEHASHINFO msifilehashinfo = new MSIFILEHASHINFO { dwFileHashInfoSize = 20 };
int results = MsiGetFileHash(
@"c:\code\myfile.file",
0,
ref msifilehashinfo);
}
}
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
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).