.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH GetProcAddress 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBGetProcAddress\fR (KERNEL32.@) .SH SYNOPSIS FARPROC GetProcAddress ( HMODULE \fIhModule\fR, LPCSTR \fIfunction\fR ) .SH DESCRIPTION .PP Find the address of an exported symbol in a loaded dll. .SH PARAMS \fIhModule\fR \fB[In]\fR Handle to the dll returned by \fBLoadLibraryA(3w)\fR. .PP \fIfunction\fR \fB[In]\fR Name of the symbol, or an integer ordinal number < \fB16384.\fR .PP .SH RETURNS .PP \fBSuccess:\fR A pointer to the symbol in the process address space. .PP \fBFailure:\fR \fBNULL\fR. Use \fBGetLastError(3w)\fR to determine the cause. .SH IMPLEMENTATION .PP Declared in \fB"winbase.h"\fR. .PP Implemented in \fB"dlls/kernel32/module.c"\fR. .PP Debug channel \fB"module"\fR.