Desktop Functions: Smart Device Functions:
|
shcreatestreamonfile (shlwapi)
C# Signature:
[DllImport( "shlwapi.dll", CharSet=CharSet.Unicode, ExactSpelling=true, PreserveSig=false, EntryPoint="SHCreateStreamOnFileW" )] VB Signature:User-Defined Types:None. Alternative Managed API:Do you know one? Please contribute it! Notes:I have only tested this using .NET 2.0. Also note that the above import will cause the API to throw a managed exception in case of failure as opposed to returning a HRESULT error code. Tips & Tricks:Please add some! Sample Code:private System.Runtime.InteropServices.ComTypes.IStream GetComStreamForFile( string fileName ) {
System.Runtime.InteropServices.ComTypes.IStream stream = null; } Please edit this page!Do you have...
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). |
|