[DllImport("kernel32.dll", CharSet=CharSet.Auto)]
public static extern IntPtr GetModuleHandle(string lpModuleName);
<DllImport("kernel32.dll", CharSet:=CharSet.Auto, SetLastError:=True)> _
Public Shared Function GetModuleHandle(ByVal lpModuleName As String) As IntPtr
End Function
[DllImport("kernel32", CharSet : CharSet.Auto)]
static def GetModuleHandle(lpModuleName as string) as IntPtr:
pass
None.
None.
Please add some!
IntPtr ModKernel32 = GetModuleHandle("Kernel32.dll");
Do you know one? Please contribute it!