NAME

GetProcAddress  (KERNEL32.@)

SYNOPSIS

 FARPROC  GetProcAddress
 (
  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.
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 to determine the cause.

IMPLEMENTATION

Declared in "include/wingdi.h". gitlab.winehq.org/wine/wine/blob/master/include/wingdi.h

Implemented in "dlls/kernel32/module.c". gitlab.winehq.org/wine/wine/blob/master/dlls/kernel32/module.c

Debug channel "module".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.