Desktop Functions: Smart Device Functions:
|
Search Results for "LoadResource" in [All]Constants1: LR_ <Flags()> Public Enum LoadResourceFlags As UInteger kernel322: LoadResource
static extern IntPtr LoadResource(IntPtr hModule, IntPtr hResInfo);
Private Shared Function LoadResource(hModule As IntPtr, hResInfo As IntPtr) As IntPtr 3: LockResource
[DllImport("Kernel32.dll", EntryPoint = "LoadResource", SetLastError = true)]
private static extern IntPtr LoadResource(IntPtr hModule, IntPtr hResource);
IntPtr resH2 = LoadResource(IntPtr.Zero, resH1); |