hi..
i'm trying to convert vc++ code into QT.
in Vc++the code calls inbuilt function GetProcAddress ()

After searching on google, i found some info about it.


GetProcAddress ()
Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
Syntax
C++

FARPROC WINAPI GetProcAddress(
__in HMODULE hModule,
__in LPCSTR lpProcName
);

I'm not sure about it i.e (GetProcAddress is windows function)
Correct if i'm wrong.

How can the same function be implemented in Qt ?