GetProcAddressW (coredll)
Last changed: BK-66.46.213.4

.
Summary
This function returns the address of the specified exported DLL function.

C# Signature:

[DllImport("coredll.dll", EntryPoint="GetProcAddressW", SetLastError=true)]
public static extern IntPtr GetProcAddress(IntPtr hModule, string procName);

VB Signature:

Declare Function GetProcAddress Lib "Coredll"  Alias "GetProcAddressW"  _
    (ByVal hModule As Long, ByVal lpProcName As String) As Long

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:

Documentation