1234567891011121314151617181920212223 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class UnsafeNativeMethods
- {
-
-
-
-
-
-
-
-
-
- [DllImport("shell32.dll")]
- public static extern uint ExtractIconEx(string lpszFile, int nIconIndex, IntPtr[] phIconLarge, IntPtr[] phIconSmall, uint nIcons);
- }
- }
|