Tagged Questions

0
votes
2answers
41 views

LoadLibrary on OCX file fails in Windows 7 x64

Hi, I need to open a html help file from within a legacy windows application written in old version of C++ Builder. HtmlHelp is loaded via HtmlHelp.ocx, which I am loading via Loa …
0
votes
1answer
59 views

Hooking LoadLibrary API call

I want to load a different version of a DLL than is present in the working directory of the application. For this I need to hook the LoadLibrary call so that when the application m …
1
vote
0answers
56 views

LoadLibrary() - “Invalid Access Memory Location (998)”

Let me start off by saying I had one DLL loading in just fine. But when I go to load a second DLL it always errors out with a "Invalid Access Memory Location (998)" error. In my p …
0
votes
1answer
90 views

VC++-MFC : LoadLibrary returns invalid handle 0x10000000

Hi, I am unable to load my test.dll (in VC++ - MFC) using LoadLibrary() API. I get error code 126 (Module not found)using GetLastError(). By dependency walker I have come to know t …
0
votes
2answers
99 views

How to test if a DLL can be loaded without an error

Hi..! I have a native C++ application (no fancy .Net stuff just C++). However it uses some optional .Net assemblies through mixed mode wrapper dll files. These dlls are loaded usi …
0
votes
2answers
119 views

LoadLibraryW doesn’t work while LoadLibraryA does the job

I have written some sample program and DLL to learn the concept of DLL injection. My injection code to inject the DLL to the sample program is as follows (error handling omitted): …
0
votes
6answers
129 views

Disable automatic DLL loading in C++

My scenario is as follows: my application depends on a certain DLL (I use it's lib during linkage). However, when my application executes, I want to explicitly load that DLL using …
0
votes
3answers
213 views

Calling WinSock functions using LoadLibrary and GetProcAddress

Basically I have a header file like this: #if WIN32 typedef DWORD (WSAAPI *SocketStartup) (WORD wVersionRequested, LPWSADATA lpWSAData); typedef SOCKET (WINAPI *MakeSocket)(IN int …
2
votes
6answers
434 views

What might prevent a DLL from loading with LoadLibrary?

I have a JD Edwards business function, which is written in Microsoft Visual C++ as a C module. I'm using LoadLibrary to access a third party DLL. In a standalone test program, the …
3
votes
2answers
143 views

How to reverse System.loadLibrary in Java

I am writing a JNI program and I want to unload the dll after i hava finished using it. What can I do for this purpose? I couldn't find a unloadLibrary() method in the Javadoc.
0
votes
4answers
115 views

How Do I use LoadLibrary in COM Accross Multiple Threads?

Let's say that I have the following code that's run in one thread of a multi-threaded COM application: // Thread 1 struct foo { int (*DoSomething)(void ** parm); }; HMODULE f …
5
votes
6answers
438 views

Catching LoadLibrary() errors gracefully

I'm working on a piece of C++ software which runs on all Windows versions between Windows XP and Windows Vista. In my code, I developed a DLL which links against a standard library …
2
votes
3answers
447 views

LoadLibrary fails under Vista x64

Hello, Right after I moved from XP to Vista,I realized my C# programs don't work. This is the situation: I wrote a C++ dll that I use in my C# application.The DLL worked fine in …
1
vote
3answers
383 views

LoadLibrary() error code 127

I'm having trouble with LoadLibrary() and getting an error that doesn't make sense to me: ::SetLastError(0); m_hDll = ::LoadLibrary(szName); if (m_hDll == NULL) // Fail …
1
vote
2answers
605 views

Loading Managed C++ DLL from plain C++ Program via LoadLibrary

Hi, I'm trying to get a simple mixture between Managed C++ and plain C++ working. I'm using Visual Studio 2005 but keep hitting a problem. Here's my setup. First, I have a simple …

1 2 next
15 30 50 per page