So far I used to load dlls at load-time therefore compiled my programs with .lib file that linker made when building a dll. Now I've come to a situation when I would like to execute a function in a...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10087449.html
Zones:
C++Date Answered: 10/09/1998 Grade: A Views: 0
I have a DLL with next function exported:
__declspec(dllexport) void MainDataPipe(SOCKET ServerSock, SOCKET ClientSock){
In the program I try (with no success):
FARPROC temp;
temp = GetProcAd...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10202127.html
I fail load proc addresses...
I've never used index to load them before, but this time I need it. Win32 SDK say's that the I must specify the number in a low order value, and the high part shoul...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10234533.html
I want to execute a function from a DLL via Loadlibrary and GetProcAddress. LoadLibrary works fine but GetProcAddress returns NULL. Here is my code:
HINSTANCE hLib = LoadLibrary("hotkey.dll")...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_11623898.htm...
Zones:
Windows MFCDate Answered: 10/22/2000 Grade: A Views: 0
I know usually it's the other way around to use VB as an interface and to write the dll in C... But my situation is reversed... Is it possible to load a VB ActiveX dll in C?
I use LoadLibrary ...
http://www.experts-exchange.com/Programming/Languages/C/Q_20499034.html
Zones:
CDate Answered: 12/23/2003 Grade: A Views: 0
Hello all;
Sorry about the lack of points. All I can say is that I will provide more later. I probably need to purchase some. I always grant "A" for working answers though.
I am trying to use...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20849804.html
Zones:
C++Date Answered: 01/13/2004 Grade: A Views: 0
I'm trying to dynamically load a DLL. I call LoadLibrary to get my handle, then I typically use GetProcAddress to assign the function to a variable. However, I need to be able to do it using the kn...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_21138163.html
I'm trying to use up to 3 dll's in an vc6 application. On the end-user's system, not all the dll's will necessarily be installed. I'm using LoadLibrary so the program can proceed as long as at leas...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_21865192.htm...
Zones:
Windows MFCDate Answered: 05/26/2006 Grade: A Views: 523
I know how to load the DLL with LoadLibrary. The problem
is, Visual C++ 4.0 gives me an error no matter what syntax I
use to declare the function pointer and to assign the
address returned by GetP...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10002526.html
I've been developing a real time Image processing with
QuickCam program.
There are mainly 4 files
RV2.exe(uses rvcommon.dll through import lib and using mfc in dll)
rvcommon.dll(uses mfc in dll...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10043274.htm...
Zones:
Windows MFCDate Answered: 03/18/1998 Grade: B Views: 0