loadresource (kernel32)
Last changed: Tsahi Asher-217.132.197.202

.
Summary

C# Signature:

[DllImport("kernel32.dll", SetLastError=true)]
static extern IntPtr LoadResource(IntPtr hModule, IntPtr hResInfo);

VB.NET Signature:

<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function LoadResource(hModule As IntPtr, hResInfo As IntPtr) As IntPtr
End Function

User-Defined Types:

None.

Notes:

hModule is the handle to the module in the executable, returned by FindResource

hResInfo is the return value from FindResource.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation