Top "Dll" questions

A dynamic-link library (DLL) is a module that contains functions and data that can be used by another module (application or DLL).

How to identify if the DLL is Debug or Release build (in .NET)

Possible Duplicate: How to tell if a .NET application was compiled in DEBUG or RELEASE mode? I'm sure this has …

.net dll build debugging release
How to decompile an exe or a dll to assembly

I am really interested in assembly language and I want to learn about how exe files work how dlls run …

dll assembly exe decompiling
MS C++ 2010 and mspdb100.dll

Microsoft's C++ compiler and linker seem to have an odd relationship with mspdb100.dll. When run from the IDE, of …

visual-studio visual-studio-2010 visual-c++ dependencies dll
Get DLL path at runtime

I want to get a dll's directory (or file) path from within its code. (not the program's .exe file path) …

c++ dll
BadImageFormatException when loading 32 bit DLL, target is x86

I have a DLL (FreeType) which is certainly 32-bit (header: IMAGE_FILE_MACHINE_I386). I want to use it from …

c# dll dllimport 32bit-64bit badimageformatexception
error Please #define _AFXDLL or do not use /MD[d] occurs even after making changes in Project Properties

I am working on Win32 project in Visual Studio 2011. It is generating MFC error when I includes afx.h or …

visual-c++ dll mfc
How to copy DLL files into the same folder as the executable using CMake?

We use CMake for generating the Visual Studio files of our sources in our SVN. Now my tool requires some …

dll cmake
Monitoring application calls to DLL

In short: I want to monitor selected calls from an application to a DLL. We have an old VB6 application …

dll monitoring hook monitor
Python import dll

How would I import a winDLL into python and be able to use all of its functions? It only needs …

python dll ctypes
"Unable to find an entry point named [function] in dll" (c++ to c# type conversion)

I have a dll which comes from a third party, which was written in C++. Here is some information that …

c# c++ dll dllimport extern