MemoryGetProcAddress()

Auto Hotkey

MemoryGetProcAddress

Find the function pointer in the specified dll previously loaded with MemoryLoadLibrary. Similar to GetProcAddress.

OutputVar := MemoryGetProcAddress(Handle, FuncName)
Function Example: ahkdll := MemoryGetProcAddress(ahkdllModule,"ahkdll")

Parameters

OutputVar

The name of the variable in which to store the function pointer.

Handle

MemoryModule handle prevously returned by MemoryLoadLibrary. or ResourceLoadLibrary.

FuncName

Name of the function.

Related

MemoryModule, MemoryLoadLibrary, ResourceLoadLibrary, MemoryFreeLibrary, MemoryFindResource, MemorySizeofResource, MemoryLoadResource, MemoryLoadString, DllCall, DynaCall

Examples

See MemoryLoadLibrary