Tagged Questions
Dynamic-link library (also written without the hyphen), or DLL, is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems. In the broader sense of the term, any data file with the same file format can be called a resource DLL.
52
votes
15answers
22k views
When to use dynamic vs. static libraries
When creating a class library in C++, you can choose between dynamic (.dll) and static (.lib) libraries. What is the difference between them and when is it appropriate to use which?
37
votes
5answers
19k views
How can I use a DLL from Python
What is the easiest way to use a DLL from within Python?
Specifically, how can this be done without writing any additional wrapper C++ code to expose the functionality to Python?
Native Python ...
28
votes
3answers
40k views
Dependency Walker reports IESHIMS.DLL and WER.DLL missing?
On a Windows XP Professional SP3 with Internet Explorer 8 box, when I run Dependency Walker on an executable of mine it reports that:
IESHIMS.DLL and WER.DLL can't be found.
Do I need these DLL's?
...
28
votes
7answers
11k views
Embedding DLLs in a compiled executable
You know, I haven't seen a good answer for this anywhere. Is it possible to embed a pre-existing DLL into a compiled C# executable (so that you only have one file to distribute)? If it is possible, ...
27
votes
4answers
18k views
How can I test a windows dll to determine if it is 32bit or 64bit?
I'd like to write a test script or program that asserts that all dlls in a given directory are of a particular build type.
I would use this as a sanity check at the end of a build process on an sdk ...
25
votes
5answers
5k views
How to idenfiy if the DLL is Debug or Release build (in .NET)
I'm sure this has been asked before, but google and SO search failed me.
How can I identify if a DLL is a release build or debug build?
22
votes
1answer
439 views
Delphi XE2: Debug a 64 bit dll through a 64 bit app
Has anyone had success in debugging a 64 bit dll by running/attaching to a 64 bit application? I have Delphi code for both the application and the dll. I can debug the application in 32 bit and 64 ...
21
votes
3answers
8k views
using ILMerge with .NET 4 libraries
Two problems:
1) Basic .NET Assembly Not Included in ILMerged Assembly
I'm having trouble using ILMerge in my post-build after upgrading from .NET 3.5/Visual Studio 2008 to .NET 4/Visual Studio ...
21
votes
5answers
55k views
How to fix DWMAPI.DLL delay-load dependency under WinXP?
I have built a .dll under WinXP that claims it can't find DWMAPI.DLL when it's loaded. The problem is that this DLL is a Vista DLL, and this a known issue for XP users that have IE7 installed. The ...
21
votes
7answers
8k views
Embedding one dll inside another as an embedded resource and then calling it from my code
I've got a situation where I have a DLL I'm creating that uses another third party DLL, but I would prefer to be able to build the third party DLL into my DLL instead of having to keep them both ...
19
votes
7answers
702 views
Do dynamic libraries break C++ standard?
The C++ standard 3.6.3 states
Destructors for initialized objects of static duration are called as a result of returning from main and as a result of calling exit
On windows you have FreeLibrary and ...
19
votes
12answers
7k views
19
votes
4answers
11k views
check if unmanaged dll is 32-bit or 64-bit?
How can I programmatically tell in C# if an unmanaged dll is x86 or x64?
18
votes
7answers
835 views
Where to store external dlls?
I my project I'm using some 3rd party librarys. I include them using the references folder in the Visual Studio.
But where should i save the dlls files? They are referenced from a path in the file ...
18
votes
4answers
4k views
Working with Visual Studios C++ manifest files
I have written some code that makes use of an open source library to do some of the heavy lifting. This work was done in linux, with unit tests and cmake to help with porting it to windows. There is a ...
17
votes
3answers
1k views
What are the `exact` differences between .NET dll and a normal dll?
I want to know What are the exact differences between .NET dll and a normal dll.
First question, what is "normal DLL" called? I'm using the word 'normal'. But it doesnt seem right?
Because both ...
17
votes
1answer
6k views
Read a non .NET DLL version from C#?
I have a folder with some DLLs in it (not .NET assemblies) and I would like to read the file information in them. Things like the version, name... etc. What is the best way to approach this?
16
votes
4answers
661 views
Get StartAddress of win32 thread from another process
Background:
I've written a multi-threaded application in Win32, which I start from C# code using Process class from System.Diagnostics namespace.
Now, in the C# code, I want to get the name/symbol ...
16
votes
2answers
10k views
how to make a jar file that include dll files
i bought a third-party java library which include a jar file and two dll files. i wrote my own java program which invoke the third-party jar file. now my question is how can i package all my code ...
15
votes
5answers
517 views
Is rebasing DLLs (or providing an appropriate default load address) worth the trouble?
Rebasing a DLL means to fix up the DLL such, that it's preferred load adress is the load address that the Loader is actually able to load the DLL at.
This can either be achieved by a tool such as ...
15
votes
5answers
4k views
Plugins system for Delphi application - bpl vs dll?
I'm writing delphi app which should have capability of loading plugins. I'm using JvPluginManager as plugin system/manager ;) Now, in the new plugin wizard they say it's better to use .bpl type ...
14
votes
4answers
662 views
One big executable or many small DLL's?
Over the years my application has grown from 1MB to 25MB and I expect it to grow further to 40, 50 MB. I don't use DLL's, but put everything in this one big executable.
Having one big executable has ...
14
votes
2answers
13k views
NUnit “missing” GPSVC.DLL on Windows 7/64
I recently upgraded from Vista/32 to Win7/64. On my old machine, everything was working fine.
Unfortunately, on my new machine NUnit won't load my unit tests, with the error message ...
14
votes
10answers
5k views
Fast C++ program, C# GUI, possible?
I'm looking into developing an application that will process data from a line-scan camera at around 2000 lines (frames) per second. For this real-time application, I feel that C/C++ are the way to ...
14
votes
8answers
2k views
How can I protect my ASP.Net Source Code From My Developers
This seems like a weird position to be in, but let me ask the question anyway.
I have created some DLLs that do some magical mumbo-jumbo that is needed to display the content for the website I am ...
14
votes
1answer
13k views
Why do 64bit dlls go to System32 and 32bit dlls to SysWoW64 on 64bit Windows?
I would like to know when do we need to place the file under
C:\Windows\System32 and C:\Windows\SysWOW64.
when I used 32 bit dll I placed it under syswow64 and when I used 64 bit dll I placed it in ...
14
votes
7answers
6k views
Unmanaged DLLs fail to load on ASP.NET server
This question relates to an ASP.NET website, originally developed in VS 2005 and now in VS 2008.
This website uses two unmanaged external DLLs which are not .NET and I do not have the source code to ...
14
votes
6answers
9k views
How do I determine the dependencies of a .NET application?
Does Dependency Walker work with managed apps? I've downloaded the latest and tried profiling the app, but it just exits without much of an explanation. If it doesn't work with .NET, then is there ...
13
votes
5answers
4k views
Embedding assemblies inside another assembly
If you create a class library that uses things from other assemblies, is it possible to embed those other assemblies inside the class library as some kind of resource?
I.e. instead of having ...
12
votes
4answers
287 views
how do I work around log4net keeping changing publickeytoken
We have an asp.net 4.0 project which uses a couple of frameworks which is dependent on log4net version 1.2.10.0. Today I tried to include a new framework which is dependent on log4net version ...
12
votes
2answers
1k views
Registration-free COM/DLL?
My program is using the Skype4COM.dll (A wrapper for the Skype API).
I am using Delphi 2010 - is there a way to make sure that my program is ALWAYS using the Skype4COM.dll that I will ship it with? ...
12
votes
2answers
4k views
Issue using Visual Studio 2010 compiled C++ DLL in Windows 2000
I have a very simple DLL written in unmanaged C++ that I access from my application. I recently switch to Visual Studio 2010, and the DLL went from 55k down to 35k with no code changes, and now it ...
12
votes
6answers
4k views
Merging dlls into a single .exe with wpf
I'm currently working on a project where we have a lot of dependencies. I would like to compile all the referenced dll's into the .exe much like you would do with embedded resources. I have tried ...
12
votes
10answers
7k views
Exporting classes containing std:: objects (vector, map, etc) from a dll
I'm trying to export classes from a DLL that contain objects such as std::vectors and std::stings - the whole class is declared as dll export through:
class DLL_EXPORT FontManager
{
The problem ...
11
votes
1answer
257 views
System.OutOfMemoryException when getting string array from c++ on c#
My C++ function
void FillArray(wchar_t** arr)
{
// some code
for(i= 0;i<end;++i)
{
wcsncpy(arr[i],InforArray[i],MaxLength);
count++;
...
11
votes
2answers
791 views
How Can I Hook a Youtube Video (Flash Player?) To Slow Down Playback?
The only good software I know which can decelerate and accelerate the playback of a YouTube video in any browser without first downloading it (because that would be cumbersome), is Enounce MySpeed.
...
11
votes
2answers
2k views
Can an x64 application use x86 assemblies - and vice versa?
My application is built as a x64 application. After moving to VS2010 I got some problems which seems to be related to some x64/x86 mismatch in referenced dlls. Now I'm moving to target .NET4, and I ...
11
votes
4answers
2k views
What does registering a DLL do?
I know how to register dlls but I've never really been sure why I'm doing it or under what conditions a dll must be registered. Could somebody explain or point me to some documentation?
11
votes
5answers
13k views
Command line tool to dump Windows DLL version?
I need a command line tool to dump standard Windows DLL version info so I can process it by means of a bash script (Cygwin).
As a Java developer I am not very used to Microsoft development tools ...
11
votes
11answers
10k views
Packing an exe + dll into one executable (not .NET)
Is anybody aware of a program that can pack several DLL and a .EXE into one executable. I am not talking about .NET case here, I am talking about general DLLs, some of which I generate in C++, some of ...
11
votes
5answers
11k views
How do I set the version information for an existing .exe, .dll?
As part of our build process I need to set the version information for all our compiled binaries. Some of the binaries already have version information (added at compile time) and some do not.
I ...
11
votes
3answers
2k views
11
votes
4answers
21k views
How do I compile an ASP.NET website into a single DLL file?
I have finally finished my web site. I published it, and I was surprised at the results. Although the App_Code compiled into a single DLL file, every page's code behind compiled into its own DLL file. ...
11
votes
8answers
7k views
How can a C++ windows dll be merged into a C# application exe?
I have a Windows C# program that uses a C++ dll for data i/o. My goal is to deploy the application as a single EXE.
What are the steps to create such an executable?
10
votes
2answers
175 views
What's the memory limit in WinXP when getting a callback from a C++ DLL in C#?
I have a C# application that uses an unmanaged C++ DLL. I've found a crash that only happens in WinXP (not Win7) when the memory I'm passing back from the C++ DLL is too big.
The basic flow is that ...
10
votes
6answers
599 views
How to obfuscate string constants?
We have an application which contains sensitive information and I'm trying my best to secure it. The sensitive information includes:
The main algorithm
The keys for an encryption/decryption ...
10
votes
2answers
278 views
Catching exceptions thrown from DLLs
When an exception exits a function in a DLL the mingw32 runtime simply calls terminate std::unexpected instead of propagating the exception to the code that is calling the DLL. What solutions are ...
10
votes
1answer
591 views
dlclose does not call destructor
plugin1.cpp:
#include <iostream>
static class TestStatic {
public:
TestStatic() {
std::cout << "TestStatic create" << std::endl;
}
~TestStatic() {
std::cout ...
10
votes
4answers
173 views
Why am I able to debug my assembly?
I am working on an assembly that handles various color transformations. When I load the assembly into a new project to test, if there happens to be an bug in the assembly, Visual Studio opens the ...
10
votes
5answers
848 views
Delphi plugin framework
I want to design Delphi plugin framework. There are three options:
1. DLL
2. BPL
3. COM interface
Every option has some disadvantage.
DLL - Promblem with MDI apllication, forms from plugin cannot be ...