Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than msi, prefix the name with the module name and a period.
MsiGetFileHash (msi)
.
C# Signature:
[DllImport("msi.dll", CharSet=CharSet.Unicode)]
static extern int MsiGetFileHash(string szFilePath, int dwOptions,
ref MSIFILEHASHINFO pHash);
out MSIFILEHASHINFO pHash);
StructLayout(LayoutKind.Sequential)]
struct MSIFILEHASHINFO
{
public int dwFileHashInfoSize;
public int dwData0;
public int dwData1;
public int dwData2;
public int dwData3;
}
[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);
}
}
contains the file hash information returned by MsiGetFileHash and used in the MsiFileHash@msdn table.
3/16/2007 8:18:18 AM - anfortas.geo@yahoo.com-24.61.25.118
Please edit this page!
Do you have...
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).