Desktop Functions: Smart Device Functions:
|
GetPRocAddress (kernel32)
C# Signature:
[DllImport("kernel32.dll", CharSet=CharSet.Ansi, ExactSpelling=true)] VB Signature:
Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Integer, ByVal lpProcName As String) As Integer C++ Signature:
[DllImport("KERNEL32.DLL", CharSet=CharSet::Ansi, EntryPoint="GetProcAddress", ExactSpelling=true)] User-Defined Types:None. Notes:GetProcAddress only comes in an ANSI flavor, hence we help the runtime by telling it to always use ANSI when marshalling the string parameter. We also prevent the runtime looking for a non-existent GetProcAddressA, because the default for C# is to set ExactSpelling to false. Tips & Tricks:This API becomes a lot more interesting in .NET v2.0 because the System.Runtime.InteropServices.Marshal class gains a new API called GetDelegateForFunctionPointer(). This means that you will be able to write code like this:
internal static class UnsafeNativeMethods { Sample Code:tatic HMODULE hDLL; typedef HRESULT (STDAPICALLTYPE * LPFNTEST) (void); LPFNTEST _pfnTest; hDLL = LoadLibrary("MyDLL.dll"); _pfnTest = (LPFNTEST)::GetProcAddress(hDLL, "Test"); Alternative Managed API:Do you know one? Please contribute it! Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|