Desktop Functions: Smart Device Functions:
|
ExtractIconEx (shell32)
[DllImport("shell32.dll", EntryPoint = "ExtractIconEx")] public static extern int ExtractIconEx(string lpszFile, int nIconIndex, IntPtr[] phiconLarge, IntPtr[] phiconSmall, int nIcons); int numIcons = ExtractIconEx(filename, -1, null, null, 0); // Number of icons ExtractIconEx(filename, 0, largeIcon, smallIcon, numIcons); // Usage 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). |
|