Tagged Questions
0
votes
0answers
28 views
UnsatisifiedLinkError - Unable to load dependent libraries
I have developed a Java applet that loads my C++ dll through the loadLibrary function. From there, my applet calls some native methods that are implemented in the C++ code. I have created an ...
2
votes
1answer
62 views
php - unable to load & use Imagick (DLL errors) (Windows 8)
I have downloaded and installed Imagick, added it to the system path and successfully tested the installation.
Also, I've downloaded the php_imagick.dll and put it in my php/ext/ folder.
Finally, I ...
0
votes
0answers
14 views
32 bit dll uses 64 bit dlls. How does this work? [duplicate]
Everywhere I go, I read that x64 and x86 code can not work with each other. This is understandable, but I am wondering if it is really correct.
I have created a dll called TestDll.dll in unmanaged ...
3
votes
1answer
51 views
Is a long list of dependencies because of a call to RegOpenKeyEx normal?
I have written a little driver DLL which I hope to deploy on a lot of XP machines some of which are bound to have missing dlls and such. Until today my Dll depended only on KERNAL32.DLL and I was ...
0
votes
1answer
105 views
c / c++ dll missing dependencies without VS2012 installed … with it its working fine
I made a c/c++ DLL compiled under /MT option.
It will be loaded by another program.
Now all this is working fine as long as I have the Visual Studio 2012 (Express or Professional, both is ok) ...
0
votes
2answers
97 views
Is there a tool like Dependency Walker that can be run on a Windows CE 6.5 mobile device?
I am trying to port an application from eMbedded Visual C++ 4.0 to Visual Studio 2008, and trying to get it to work with a Windows Embeded Handheld (6.5 Professional).
I have the compiler errors all ...
0
votes
0answers
27 views
developing and distributing office dependent application
I have an application that was developed by a collegue of mine which performs some analysis on pcap files (through winpcap) and creates an excel sheet with graphs presenting the analysis results.
The ...
1
vote
1answer
85 views
How to get wrong dll used by my application?
I made an exe which depend on an Open source library (of c++) MITK. Before using MITK lib I build it with Debug|32 bit configuration in visual studio. It was having no error. When I coded my project ...
0
votes
1answer
200 views
Maven NAR plugin: DLL dependency not found on path
I'm trying to build and test a DLL using Maven and the NAR plugin. The DLL I'm building depends on another DLL, which I built also using the NAR plugin. Here's my POM:
<project>
...
0
votes
1answer
44 views
Migrating to 64-bit - how to fix ddl dependencies? [Visual Studio 2008]
I am currently developing a software which is based on the Visual Studio 32-bit (x86) platform. However, I feel that a move to 64-bit (x64) would offer substantive advantage in that we can use 4GB of ...
0
votes
0answers
527 views
MFC100.DLL Function from Ordinal? [closed]
I have a program Visual Studio 2010 C++ app that is crashing at a particular address 0x78bb189d). I've used the dependency walker and determined that its crashing within the MFC100.DLL - the ...
0
votes
0answers
143 views
How to remove atl110.dll dependency or statically link it
I'm using /MT to statically link the runtime library and to remove those dll dependencies. Is there a way to remove atl110's dependency as well or do I have to carry that dll around with me?
1
vote
1answer
227 views
Dependency Walker Equivalent for 16 bit DLLs
I need to find the dependencies and functions of a 16 bit DLL file. I've found Dependency Walker and it looks immensely helpful, but it doesn't work on 16 bit DLLs. Does anyone know of a good ...
0
votes
1answer
241 views
Dependency Walker: Error Opening File
I am using Dependency Walker to try and resolve a .dll error. I have a main project that includes many libraries. Dependency Walker shows an error on 4 .dlls:
Error opening file. The system cannot ...
0
votes
0answers
297 views
libgcc_s_dw2-1.dll Is Missing From MinGW Bin Compiler Directory
I have MinGW installed on my computer (openSuSE) and I was wondering why I don't have libgcc_s_dw2-1.dll in my MinGW comnpiler bin? I have MinGW installed to do some cross platform development.
I ...
1
vote
1answer
270 views
How can I make sbt tell me where it resolves dependencies?
I am using sbt 0.12 RC2.
My project has a bunch of library dependencies, and some of these trigger other dependencies. Some of these dependencies are unmanaged (in lib/), some are in my local .ivy2 ...
2
votes
4answers
380 views
Legal impact of distributing Cygwin 1.7.11 to a customer
We'd like to distribute a Cygwin zip file for a customer where they can have our software installed in the Cygwin environment... but will not have to worry about anything but running a simple ...
3
votes
0answers
718 views
Linking with dynamic library with dependencies
Consider the following scenario:
Shared Library libA.so ,with no dependencies.
Shared Library libB.so, with libA.so as its dependency.
I want to compile a binary file that links with the libB.
...
0
votes
2answers
167 views
Dll dependency version conflict
I am using C++ with Visual Studio 2008 Express.
We are supplying a binary-only Windows library to a client, which itself uses a number of other libraries. Therefore we shipped both our dll file, ...
1
vote
2answers
103 views
Loosen DLL dependencies at start of application
in my Windows C++ program I have a few dependencies on DLLs (coming with drivers of input devices). I don't actually load the DLLs myself, but the drivers provide (small) .lib library that I ...
2
votes
1answer
265 views
NuGet: Where to place dlls for unmanaged libraries?
I am trying to create a Nuget package for a library that depends on ghostscript and therefore references gsdll32.dll - an unmanaged library. I can't just included that a standard dll reference. Where ...
-1
votes
1answer
955 views
msvcp100.dll missing
I wrote a program in C++ using Visual Studio 2010
But when I run it on some computers with WinXP it says
"Cannot start because MSVCP100.dll wasn't found"
How do I prevent such dependencies on dlls ...
2
votes
0answers
400 views
Could not load file or assembly 'X' or one of its dependencies. The specified module could not be found
Shot in the dark but I thought I'd try to post in hopes of some genius out there...
Background:
I am trying to added automated unit testing to a huge unmanaged C++ project. For various reasons ...
2
votes
5answers
304 views
Using a type, without knowing about the dll
is it possible to use an interface type, that is defined in a huge external dll, without referencing that dll?
in other words, there will be one core or global dll, that references the external dll, ...
3
votes
2answers
2k views
Visual Studio 2010 MSVCR dependency removal?
I've tried Googleing this but I could not find a solution. I am trying to learn some basic C++. I wrote a simple hello world:
#include <stdio.h>
int main()
{
printf("hello, world\n");
...
0
votes
1answer
36 views
How to figure out in which projects a certain dll is used
One of our other teams was upgrading a dll to .NET 4.0 which broke a lot of existing projects that where not migrated yet (.NET 3.5). The problem is that we can not figure out where the dependency on ...
1
vote
1answer
318 views
Crypto++ library is not usable because of dependency error
I downloaded and built successfully the Crypto++ library.
If I look at it with depends.exe, I get this picture : http://i.imgur.com/bGjUy.png.
The "call hierarchy" to the problematic external module ...
2
votes
3answers
2k views
OCR library for Java: compiling tesseract on Windows 64-bit
I'm using ImageJ for processing document images (business documents) and I am looking for a good OCR library to retrieve text from some regions.
Currently I am using Asprise, but the results aren't ...
2
votes
2answers
1k views
Maven project with native dependency and copying files
I have the following scenario:
mylib is a library (for which I have the sources, so I'd like to put them into a Maven project mylib:mylib for example). This library has a jar dependency for which I ...
0
votes
2answers
472 views
DllNotFoundException for .dll which is in current folder
I'm getting a System.DllNotFoundException for a .dll which is in the same folder as the executable whenever my application attempts to use a function which exists in the DLL. The weird thing is that ...
5
votes
4answers
8k views
How to check for DLL dependency?
Sometimes when I'm doing a little project I'm not careful enough and accidently add a dependency for a DLL that I am not aware of. When I ship this program to a friend or other people "it doesn't ...
2
votes
1answer
372 views
How to build dll in Eclipse without dependency of Cygwin1.dll
I have developed my own dll in Eclipse using cygwin compiler. Currently, I have to load cygwin1.dll and call cygwin_dll_init method in cygwin1.dll to load my own dll.
Is there any way to build my own ...
0
votes
1answer
530 views
Using dependency Walker to find missing file
I have a dll that is working well on my computer but doesn't work on another computer. Apperently there is a missing dependency. I tried to use the dependency walker to find the missing file. It says: ...
3
votes
3answers
217 views
Building two C++ apps that use the same dll in vs 2010
I have apps A and B, both use dll D.
A, B and D are C++ projects in vs 2010.
A.sln and B.sln are the solution files that build apps A and B.
In both A and B there is a reference to the dll D.
...
3
votes
1answer
149 views
how to register dlls with a custom registration system and look into PEs of executables for imported dlls?
I want to write a C++ program which does the following
input- executable files
output-yes/no
condition:
if(if all the dlls imported by my executable are registered with my system )
yes
else
no
...
1
vote
1answer
145 views
How does dependency walker know which functions in a module is used?
It can list the functions that's used among the exported functions.
How does it do the trick?
0
votes
3answers
405 views
Catching DLL dependencies in Win32 application
How can I catch a missing DLL in a dependent DLL?
For example:
Application is loading a DLL A.
DLL A is loading DLL B.
So if DLL B is not available, application just shows me: DLL A not found.
Any ...
1
vote
2answers
515 views
py2exe - How do I reduce dll dependencies?
My program depends on USER32.dll, SHELL32.dll, ADVAPI32.dll WS2_32.dll, GDI32.dll, and KERNEL32.dll. All are in the system32 folder. Is there any way I can include these in my program so it will run ...
0
votes
0answers
170 views
Installation of Outlook Add-In Dependent Assemblies
I am building an Outlook Add-In which depends on an additional DLL (specifically System.Data.SQLite.dll). Once I deploy the solution to a new computer, it seems it is necessary to copy ...
4
votes
2answers
6k 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 ...
4
votes
5answers
2k views
Placing C# Project References in a Subfolder
I have a solution with multiple projects that all output dlls (except for the main application of course). Copy local is set to true for all of the references and everything is fine and dandy with ...
6
votes
3answers
3k views
How to find what is depending on a specific version of a specific dependency?
I'm getting this error when I run my app (not at compile time):
Could not load file or assembly
'Castle.Windsor, Version=2.1.0.0,
Culture=neutral,
PublicKeyToken=407dd0808d44fbdc' or
one ...
2
votes
4answers
28k views
Could not load file or assembly '***.dll' or one of its dependencies
I have this dll that I created a long time ago and use to connect to the db of a specific software that I develop for. I have had no issues for well over 4 years and countless applications with this ...
2
votes
3answers
347 views
Loading a DLL that calls functions in the DLL that loaded it
I have a DLL that will be loaded by a program, and that DLL will in turn load another DLL to handle some stuff that ought not to be in the main DLL. However, the second DLL needs to be able to talk to ...
1
vote
2answers
2k views
How to find out which DLLs another EXE/DLL depend on via dynamic runtime loading?
I've tried Dependency Walker, but when I run the exe in profile, Dependency Walker froze.
1
vote
3answers
665 views
What when assembly.GetReferencedAssemblies returns “.exe” dependency?
there is a lot of examples how to load all dependencies from some assembly like:
var assembly = Assembly.ReflectionOnlyLoadFrom(assemblyPath);
foreach (var assemblyName in ...
1
vote
2answers
923 views
Removing external dependencies to MFC DLL project
Im developing a MFC DLL project in VS2008.
The dll compiles OK and I can call it fine from an GUI exe that a contractor has developed for me. Visual C++ Redistributables are required to be installed ...
0
votes
0answers
220 views
Rename dynamic library dependency without recompilation
I have a project that generates a dynamic library "my_library". It depends on an other dynamic library : foo.dll (the library itself) and foo.lib (for compilation).
I would like to rename foo into ...
1
vote
0answers
140 views
Using and deriving from interfaces defined in another COM library
I have two C++ COM projects in Visual Studio. In ProjectA I define InterfaceA in MIDL. In ProjectB I would like to define InterfaceB which inherits from InterfaceA. Is this possible to do without ...
0
votes
1answer
464 views
requiring msvcr80.dll and msvcr80d.dll in the same dll?
how can it be that a dll that i build here (in debug mode) tries to load msvcr80.dll and msvcr80d.dll ... i assume this leads then to a conflict as it can resolve the same symbols twice ...
i have no ...

