GetProcAddress32_16(3w)
NAME
GetProcAddress32_16 (KRNL386.453)
SYNOPSIS
FARPROC GetProcAddress32_16 ( HMODULE hModule, LPCSTR function )
DESCRIPTION
Find the address of an exported symbol in a loaded dll.
PARAMS
hModule [In] Handle to the dll returned by LoadLibraryA(3w).
function [In] Name of the symbol, or an integer ordinal number <
16384.
RETURNS
Success: A pointer to the symbol in the process address space.
Failure: NULL. Use GetLastError(3w) to determine the cause.
IMPLEMENTATION
Not defined in a Wine header. The function is either undocumented, or
missing from Wine.
Implemented in "dlls/kernel32/module.c".
- Debug channel "module".