11 lines
307 B
C#
11 lines
307 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Pilz.Win32.Native
|
|
{
|
|
public class LibShell32
|
|
{
|
|
[DllImport("shell32.dll")]
|
|
public static extern IntPtr SHGetFileInfo(string pszPath, uint dwFileAttributes, ref SHFILEINFO psfi, uint cbSizeFileInfo, uint uFlags);
|
|
}
|
|
} |