[DllImport("kernel32.dll", SetLastError=true)]
static extern IntPtr LoadResource(IntPtr hModule, IntPtr hResInfo);
<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function LoadResource(hModule As IntPtr, hResInfo As IntPtr) As IntPtr
End Function
None.
hModule is the handle to the module in the executable, returned by FindResource
hResInfo is the return value from FindResource.
Please add some!
Please add some!
Do you know one? Please contribute it!