Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
118 views

Impact of Microsoft Security Advisory (2269637) on .NET coding

Microsoft released Security Advisory (2269637) Insecure Library Loading Could Allow Remote Code Execution. The note refers to a tool that will help to detect this problem and programming guidelines ...
6
votes
8answers
746 views

Function pointers and unknown number of arguments in C++

I came across the following weird chunk of code.Imagine you have the following typedef: typedef int (*MyFunctionPointer)(int param_1, int param_2); And then , in a function , we are trying to run a ...
6
votes
2answers
2k views

LoadLibrary() fails to load DLL with manifest and private assembly

I am working on a Windows application (EXE) that uses multiple DLLs. Development is in VCExpress 2005 (VC 8.0), using C only. Some of these DLLs are plug-ins/add-ons/extensions that are dynamically ...
6
votes
3answers
1k 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.
6
votes
6answers
2k 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 (the Qt library). ...
5
votes
1answer
84 views

Tweak DLL module name during LoadLibrary

I want to load at runtime a third party binary plug-in (P.dll) in my application (A.exe). This plug-in has been built for another application (B.exe). The plug-in has implicit dll import on the B.exe ...
5
votes
2answers
2k views

Calling LoadLibrary on a 64-bit dll from a 32-bit process

I have a 32-bit exe that needs to dynamically load a 64-bit dll when it detects that the operating system is 64-bit. Is this possible through LoadLibrary? If not, is there another way to accomplish ...
4
votes
2answers
1k views

Is -Djava.library.path=… equivalent to System.setProperty(“java.library.path”, …)

I load an external library that is placed in ./lib. Are those two solutions to set the java.library.path equivalent? 1) set path in console when executing jar: java -Djava.library.path=./lib -jar ...
4
votes
5answers
2k views

Issue while loading a dll library file… java.lang.UnsatisfiedLinkError: Can't load library

While loading a dll file, I am getting the following exception: Exception in thread "main" java.lang.UnsatisfiedLinkError: ...
4
votes
2answers
1k views

Java web application cannot use native library (.so)

Technical summary: I'm developing a Java web service deployed on GlassFish v3, running on CentOS 5. My web service uses functionality provided by a native library (.so) . The native library works ...
4
votes
2answers
628 views

Redistributable compiler - DLLs for MS Visual Studio

I'm making a programming learning game for my senior project and I'm looking for a compiler that can compile a DLL that can then be dynamically loaded into a Visual Studio 2008 C++ application. The ...
4
votes
7answers
696 views

Is there a better way to load a dll in C++?

Right now I do something like this and it seems messy if I end having a lot of functions I want to reference in my DLL. Is there a better and cleaner way of accessing the functions without having to ...
4
votes
6answers
3k views

LoadLibrary fails when including a specific file during DLL build

I'm getting really strange behavior in one of the DLLs of my C++ app. It works and loads fine until I include a single file using #include in the main file of the DLL. I then get this error message: ...
3
votes
0answers
72 views

Java System.loadLibrary(“m”) fails on AIX 6.1

On AIX 6.1 ppc64, in order to load libm.a, our application uses the System.loadLibrary("m"). Or it fails with an error message the module has invalid magic number According to IBM documentation, ...
3
votes
1answer
37 views

LoadLibrary Calls, Returned Pointers Not Saved

I am fixing up someone else's code and noticed that the person calls LoadLibrary several times, as per below: LoadLibrary("C:\\Windows\\SysWOW64\\msjint40"); ...
3
votes
2answers
153 views

C++ class to wrap loadlibrary?

I was thinking it would be cool to have a few classes to wrap around LoadLibrary and GetProcAddress, Library and Function respectively. As I was thinking about this I'm not sure its possible. Here is ...
3
votes
2answers
91 views

Does LoadLibrary parse environment variables such as %windir%

If I do LoadLibrary("%windir%\\system32\\ole32.dll") does that mean Windows will ONLY load from "c:\windows\system32\ole32.dll" ? Also does LoadLibrary() in C understand the environment variable?
3
votes
2answers
408 views

In MFC APP, if I call “LoadLibraryA” from “InitInstance”, it calls “InitInstance” again and again

I have created an MFCApp using VS2008 wizard. Inside my application's "InitInstance()" I'm calling "LoadLibraryA()" method as I need to load a few dll files. But as soon as I call "LoadLibraryA()", it ...
3
votes
3answers
1k views

Trying to load a DLL with LoadLibrary and get R6034 “An application has made an attempt to load the C runtime library incorrectly”

I'm writing a wrapper program that loads Winamp input plugins. I've got it working well so far with quite a few plugins, but for some others, I get an error message at runtime when I attempt to call ...
3
votes
6answers
2k 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 code runs just fine. ...
3
votes
3answers
4k views

How to load a c++ dll file into Matlab

I have a C++ dll file that uses a lot of other c++ librarys (IPP, Opencv +++) that I need to load into matlab. How can I do this? I have tried loadlibrary and mex. The load library does not work. ...
2
votes
4answers
78 views

Win32 module loading from multiple directories

I have a program which stores plugins in multiple directories, like so: root/ core/bin/ app.exe core.dll plugin.dll support.dll a/bin/ a.dll a_support.dll In this ...
2
votes
4answers
56 views

Java JNI call to load library

Does it impact memory if I have two Java classes that have native calls to compiled C code and I call both those classes in another class? For instance I have Class A and Class B with both calls to ...
2
votes
2answers
125 views

C++ How to control Image Base of LoadLibrary API

After Rebasing the main program very high up in it's own imagebase. How do I guarantee that the dll that gets loaded will load in 0x400000 dllImageBase = LoadLibrary("test.dll"); printf("imagebase = ...
2
votes
2answers
88 views

LoadLibrary from offset in a file

I am writing a scriptable game engine, for which I have a large number of classes that perform various tasks. The size of the engine is growing rapidly, and so I thought of splitting the large ...
2
votes
1answer
59 views

GetProcAdress returns always zero

I encountered a really mysterious problem. Using the function GetProcAddress, I always get zero. Debug.Print(GetProcAddress(LoadLibraryExA("kernel32"), "CreateProcess")) This line returns always ...
2
votes
2answers
267 views

Loading a third party dll in visual c++/qt application

I have third party dlls that I need to use with my application. The interface is defined in the third party dlls and I have to make the interface call from my application. I have the function ...
2
votes
2answers
628 views

GetProcAddress function in C++

Hello guys: I've loaded my DLL in my project but whenever I use the GetProcAddress fucntion. it returns NULL! what should I do? I use this function ( double GetNumber(double x) ) in "MYDLL.dll" here ...
2
votes
3answers
348 views

Java: load a library that depends on other libs

I want to load my own native libraries in my java application. Those native libraries depend upon third-party libraries (which may or may not be present when my application is installed on the client ...
2
votes
2answers
455 views

Attempt to call dll function from matlab causing crash

I'm trying to use a third-party external DLL (from usbmicro) within MATLAB, but it keeps crashing MATLAB. This is from the documentation indicating the syntax of the function call from within a C ...
2
votes
1answer
76 views

Why isn't a full file path required to load a dll? In what situation would this functionality be beneficial?

Why doesn't Windows require a full file path when calling LoadLibrary, or for CLSIDs w/ registered DLLs, etc. In what situation would someone benefit from having to fall back on the DLL Search Order ...
2
votes
4answers
517 views

LoadLibrary taking a LPCTSTR

I want to develop a plugin system using LoadLibrary. My problem is: I want my function to take a const char* and LoadLibrary takes a LPCTSTR. I had the bright idea to do (LPCSTR)path which kept ...
2
votes
2answers
1k views

LoadLibrary is failing with module not found error — possible dependency problems

I have been trying to load a 32-bit dll using C++ (from a 32-bit application, on windows 7 64-bit). LoadLibrary returns NULL, and GetLastError returns 126 for "The specified module could not be ...
2
votes
4answers
635 views

Load Dll multiple times to allow multi threading in .Net

My .Net program uses a fortran Dll to perform a maths function (Arpack, solves eigen modes). I believe the fortran contains static varibles and generally isn't thread safe. Also it's very complicated ...
2
votes
1answer
585 views

error in Delphi loadlibrary()

i have given a chance to my software user to select dll from openfile dialog.(so my user can download dlls form my website and use it with the main project ). everything is working fine and it can ...
2
votes
2answers
1k views

What is the “Cannot set allocations” error, who emits it and what can I do about it?

We've been plagued for several years by occasional reports from customers about a non-descript error message "Cannot set allocations" that appears on startup of our app. We have never been able to ...
2
votes
3answers
769 views

Load two instances of the same DLL in Delphi

Here's my problem: I would like to create two separate instances of the same DLL. The following doesn't work because Handle1 and Handle2 will get the same address Handle1 := ...
2
votes
2answers
4k views

Load 32bit DLL library in 64bit application

Is there a way to load a 32bit DLL library (something with the same usage as LoadLibrary) I would like to use that function along with GetProcAddress. I looked at WOW, but it does not seem to offer ...
2
votes
6answers
2k views

How do I use a COM DLL with LoadLibrary in C++

First, COM is like black magic for me. But I need to use COM dll in one project I'm working on. So, I have a DLL I am developing and I need some functionalities that are available in a separate COM ...
2
votes
3answers
745 views

LoadLibrary Static/Globals and Threads

Say I have a DLL that has the following static/global: ClassA Object; Along with the implementation of ClassA, it also contains a 'regular' ClassB, which will not work properly if ClassA has not ...
2
votes
1answer
2k 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 project the DLLs ...
2
votes
3answers
1k views

LoadLibrary fails under Vista x64

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 XP,but when I moved to Vista ...
2
votes
5answers
2k views

Hook LoadLibrary call from managed code

We would like to hook calls to LoadLibrary in order to download assemblies that are not found. We have a handler for ResolveAssembly that handles the managed assemblies, but we also need to handle ...
2
votes
2answers
2k views

Can .NET PInvoke dynamically load a native dll from a user specified directory?

I have a .NET application and need to load a native library whose location is specified by the user. PInvoke looks like it'll only load from the global search paths (or a path specified at compile ...
2
votes
2answers
2k views

Windows path searching in LoadLibrary with manifest

If you call LoadLibrary without a path (e.g., LoadLibrary("whatever.dll"), Windows will generally follow its standard search algorithm, the same one it uses to find EXEs. My question is this: suppose ...
1
vote
2answers
63 views

DLL_PROCESS_ATTACH failing to execute on Windows 7 C++

I am trying to load a .dll file and have it display a message box when loaded. From my understanding, once a .dll is loaded, it makes a call to dllmain() and switches to the DLL_PROCESS_ATTACH option. ...
1
vote
0answers
140 views

LoadLibrary API Fails with 998 (ERROR_NOACCESS) on WIN7 X64

The API LoadLibrary() fails with my MFC application when run over win7 64 bit PC. It returns error 998 for a specific DLL. This DLL built over 32 bit machine. But no issues to load other DLLs. I ...
1
vote
1answer
280 views

C++ LoadLibrary ERROR_NOACCESS “Invalid access to memory location.”

OK, so I have a situation in which I call LoadLibrary on a DLL that I wrote. This call to LoadLibrary returns error #998, or ERROR_NOACCESS "Invalid access to memory location." The DLL in question ...
1
vote
1answer
34 views

Is it possible to use functions inside of a application just like a module

Is it possible to use a executable (EXE) as a DLL file in your application. Some kind of WIN32 API for this? I'm not trying to detour any functions or patch anything to the file itself. Something ...
1
vote
2answers
32 views

LoadLibrary of a file with other the 'dll' extension

Is it possible to load a dll file that doesn't have a 'dll' extension? Thanks

1 2 3