getmodulehandle (coredll)
Last changed: rodabafilms@gmail.com-213.204.248.161

.
Summary
This function returns a module handle for the specified module if the file is mapped into the address space of the calling process.

C# Signature:

[DllImport("coredll.dll", EntryPoint="GetModuleHandleW", SetLastError=true)]
public static extern IntPtr GetModuleHandle(string moduleName);

VB Signature:

Declare Function GetModuleHandleW Lib "user32.dll" (TODO) As TODO

VB.NET Signature:

<DllImport("coredll.dll", EntryPoint:="GetModuleHandleW", SetLastError:=True)>
Public Shared Function GetModuleHandle(ByVal ModuleName As String) As IntPtr
End Function

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Taken from openNetCF in OpenNETCF.Win32.Core

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation