Questions tagged [dll]
The dll tag has no summary.
50 questions
0 votes
0 answers
533 views
Porting a 32-bit Win32 DLL driver to 64-bit when a 64-bit DLL is unavailable in C++
I have a legacy 32-bit Win32 DLL driver that interfaces with a test equipment. I possess the API header file for this driver, and I dynamically load the DLL at runtime within my C++ test application ...
-3 votes
1 answer
180 views
How do I find out all modifications made by installing software? [closed]
So I want to find out how to get a list of all modifications made by installing a piece of software. For example. If I install Word, I want to see all directories created, classes registered, dlls, ...
3 votes
1 answer
276 views
Distributing library which internally using COM library
I would like to create a dll library that will be loading in runtime. The library'll be using internally COM objects with MTA flag. The library will be created in main thread. So I have question: ...
0 votes
1 answer
504 views
Multiple DLLs vs Multiple EXE's in a project that needs to be modular (web browsing automation)
First of all, C# solutions are needed. So in my team I am responsible for creating a program that will receive a "task" in json format from an API, from this json it needs to figure out what website ...
-1 votes
1 answer
215 views
Is it a good idea to make common Electron libraries available globally on Windows? [closed]
I build and run many Electron apps on Windows. I noticed that all of them have the same common api files / libraries to run. They all take about 30mb of space. I'm thinking of installing these files ...
0 votes
1 answer
306 views
What are the dangers/downside of unit tested dynamic library(DLL) being different from released library?
This is similar to: https://stackoverflow.com/questions/1278831/unit-tests-in-production-release-code# but more specific. At the moment the DLL I ship and the DLL I use for unit testing have ...
2 votes
1 answer
174 views
Organizing code to minimize repetition and external references
I am struggling with how to organize external references in a C# program in order to minimize code repetition. I have application "A1" for which I want to use Microsoft's Unity IoC/Dependency ...
4 votes
1 answer
7k views
Choosing between Web API and DLL reference
I am confused between choosing Web API or DLL reference for a project I am working on and want to understand recommendations for both the approach. We are having a Web API which exposes an interface ...