Dynamic-link library(DLL) is a module that contains functions and data that can be used by another module (application or DLL). It is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems.
0
votes
0answers
13 views
Compiling a php extension into a dll
I've been attempting for a last few days to make use of the operator overloading extension (pecl.php.net/package/operator), which has apparently been updated recently to be compatible with 5.3 and ...
0
votes
0answers
6 views
In Chrome, Where to do cleanup before render process exits?
I dynamically load a dll when renderer start up, but cannot find a correct place to unload this dll when the renderer exits(for example, when I close the related tab).
I've asked a question here with ...
0
votes
0answers
14 views
How to communicate between COM object and application?
I got a COM objects written in c# and an app written in c#, i register them with regasm and one implements Context Menu other Icon Overlays. I need my COM objects to communicate with my app, when ...
0
votes
1answer
16 views
Languages supporting exporting functions using Dynamic Link Libraries
What programming languages do support writing DLLs for Windows with functions which can be loaded using LoadLibrary and GetProcAddress?
0
votes
3answers
35 views
Why do I need to rebuild after updating a lib dll
I use a lib DLL file for a lot of my common code which I push around from project to project. Whenever I need a new feature on one of my projects, I grab and compile the most recent version of the ...
0
votes
1answer
21 views
Create empty DLL project to generate DLL from static library
I have a project which is a static library and I want to create another "wrapper" project which will simply reference this project and exports functions/classes which I have marked with ...
0
votes
1answer
29 views
Error occurred while connecting/creating automation server for ClassLibrary1.classname
I built a DLL with Visual Basic 2010 Express. It's built on the VB 4.0 framework. After building, I ran on the admin command prompt:
C:\windows\...v4.0.30319\RegAsm ...
-2
votes
0answers
11 views
Register com dll using WIX per user install [closed]
How should I register .Net COM dll using per user wix installer because. It does not ask for elevated permission prompt.
-1
votes
0answers
15 views
Intel Compiler ICC(Composer XE 2013) in Binary Compatibility with Visual Studio 10 built DLLs [closed]
I am trying to use the Intel Compiler 2013 to build a plugin consisting of several DLLs that will be loaded into another application built with Visual Studio 2010. I do not have control over the ...
0
votes
0answers
17 views
Building a DLL with MinGW and loading it with Python's ctypes module
I am trying to build a C DLL which can be loaded within python using ctypes.windll.loadlibrary(...)
I can create a DLL and a client program all in C which work following the MinGW tutorial at ...
0
votes
1answer
80 views
Procedure in a component that uses another procedure in a DLL
I am having a problem trying to create a procedure for my component that uses a procedure contained in a DLL (TExecute) which also needs a declaration in the current code. So this procedure has a ...
0
votes
0answers
10 views
Problems creating a COM DLL in MATLAB
Following the docs here, I'm trying to create a COM DLL in MATLAB. I have the Matlab Compiler installed, and I've run mbuild -setup, using the Microsoft Visual Basic C++ 2010 compiler. My MATLAB ...
0
votes
0answers
24 views
Not able to call exported virtual function
I have a dll with exported class Base with a pure virtual function.Also I have
a derived class having implementation of the virtual function in the same dll.
#define MYAPI_EXPORT ...
0
votes
0answers
19 views
MVSC deletes lib and dll when building exe
I have a create a new solution in MVS with two project: an exe application and its dynamic library. For the Release configuration I made the linker create the exe, dll and lib inside the same folder.
...
0
votes
1answer
27 views
Load Dll without execute dllmain function
I want to load special dll without execute dllmain function.
I think, set a breakpoint at dllmain can solve this problem.
But I don't know How can I do?
Also I want call dll's export function.
I ...
0
votes
2answers
36 views
ATL COM is the only way to develop IE7 or above addons/extensions?
I went through various resources available on internet and found that ATL COM is used to develop addons for IE9 or above. But as per my knowledge this library is very old library. There must be ...
0
votes
0answers
18 views
Hide export symbols without using a DEF file
I would like to hide exported symbols from a DLL for obfuscation purposes.
That is pretty neatly doable when using a module definition file (.def) looking something like this;
EXPORTS
...
1
vote
1answer
43 views
Method's type signature is not PInvoke compatible
I'm new to vb.net and trying to call Delphi Dll that returns a record. If I put three integers in struct it works when I try something like the following code I get "Method's type signature is not ...
0
votes
0answers
22 views
Where can i download an already built libtorrent dll?
I'm having a lot of trouble trying to build the libtorrent library. i've searched the internet for an already built dll without any success. i was wondering if someone know where to download the dll.
...
0
votes
1answer
24 views
IllegalArgumentException in IKVM-compiled DLL
Quick Summary:
My IKVM-compiled JAR-to-DLL libraries work with some methods and classes in a .NET project, but a particular one is throwing an exception that seems to indicate my IKVM.Runtime.JNI is ...
2
votes
3answers
104 views
+100
How to prepare a build job that produces .dll and unix .so on single Windows environment?
How to create a C++ single build job that will produce .dll working on windows and .so prepared to work on Unix?
Suppose that our development environment is based on Windows.
2
votes
2answers
85 views
Invoking a Multi-Threaded DLL at Run-Time
All, I call a .NET DLL containing a WinForm at run-time from a WinForm C# application. To do this I use the following:
DLL = Assembly.LoadFrom(strDllPath);
classType = ...
0
votes
2answers
871 views
Trying to use DLL from Java (JNA). Unable to load library exception
I have NetBeans project from tutorial which causes exception:
Exception in thread "main" java.lang.UnsatisfiedLinkError: Unable to load library 'simpleDLL': The specified module could not be ...
0
votes
2answers
162 views
Mapping high-level functions in user-mode dlls to NTDLL.dll
The book Windows NT/2000 Native API Reference provides a comprehensive documentation (even though outdated) of undocumented (by Microsoft) Native APIs. But I am curious, is there anyway to find the ...
-1
votes
1answer
172 views
C++ loop that doesn't pause execution
I have a dll file which I use elsewhere, but in the dll file, I have a class which needs to be updated very frequently by a function inside it. Then I wanted to just create a loop that executes the ...
2
votes
3answers
7k views
How can I use Sqlite in a C# project? [closed]
I need to use system.data.sqlite.dll into my C# project.
I need to use system.data.sqlite.dll into my C# project. How can I accomplish that?
1
vote
1answer
289 views
edit, debug and build both c dll and exe from single project and code base
I have a C console program in VS2010 that I would like to edit/debug/build as a single project. That is, I would like to write it and debug it as if it were a vanilla console exe, but have it produce ...
1
vote
2answers
912 views
getProcAddress - NULL is returned
I have the following code:
//mydll.cpp
#include <Windows.h>
#include <io.h>
#define STDOUT_FILEDESC 1
class MYSTDOUT {
bool shouldClose;
bool ...
1
vote
1answer
87 views
CRT linkage with shared library and application
Windows application links dynamically CRT.After the application executes part of its code it loads shared library.The shared library is linked statically with CRT.
My question is :
If the ...
3
votes
2answers
136 views
Set public field of unmanaged C dll from C#
I am writing a C# binding for an unmanaged C dll.
The dll provides 5 hooks to return several data:
typedef void (*t_libpd_printhook)(const char *recv);
and exports a field like:
EXTERN ...
2
votes
2answers
1k views
Library linker errors driving me mad
It's me again. I'm back with an all new project and an all new problem.
I am trying to implement something for Growl. Either using a static or shared library (both are provided). I included the ...
3
votes
2answers
392 views
How can I compile jrtp source to a dll file?
How can I compile JRTP (Jori Real Time Transfer protocol) Library?
6
votes
4answers
2k views
C# equivalent of DllMain in C (WinAPI)
I have an older app (ca. 2005) which accepts dll plugins. The app was originally designed for Win32 C plugins, but I have a working C# dll template. My problem: I need to do some one-time ...
0
votes
2answers
657 views
Error: “This application failed to start because libufun.dll was not found.”
OS: Windows XP
IDE: Visual Studio 2005
Language: C/C++
Coding for: Unigraphics NX (which is a type of CAD software), specifically an external automation in Open C (but this may not be important)
...
5
votes
2answers
17k views
Using DLL's in Visual Studio 2010 C++ project
I am trying to use a DLL in a Visual Studio 2010 C++ project . I followed the directions here but http://msdn.microsoft.com/en-us/library/ms235636(v=vs.80).aspx I cannot seem to add references to my ...
4
votes
4answers
1k views
Sequential GUIDs
I hope someone can answer this question.
How does the UuidCreateSequential method in the rpcrt4.dll class use to seed it's guids?
I know this much:
Microsoft changed the UuidCreate function so it no ...
2
votes
1answer
1k views
C++/CLI application crashing randomly on Release builds
I have created a C++/CLI mixed DLL which I am using from C# Winforms application.
I have carefuly checked Build config to be sure that I am linking to debug libs in Debug mode and non-debug libs in ...
1
vote
4answers
1k views
Access violation inside LoadLibrary() call
I encounter an access violation when calling a DLL inside LabVIEW. Let's call the DLL "extcode.dll". I don't have its code, it comes from an external manufacturer.
Running it in Windbg, it stopped ...
3
votes
4answers
6k views
Dll not copying to bin folder
I'm having an issue with Devart DLLs not getting copied to the bin folder of my web app. I have my web app project that references projectA. ProjectA references projectB. The Devart Dlls are used in ...
8
votes
3answers
13k views
Creating simple c++.net wrapper. Step-by-step
I've a c++ project. I admit that I'm a complete ZERO in c++. But still I need to write a c++.net wrapper so I could work with an unmanaged c++ library using it. So what I have:
1) unmanaged project's ...
3
votes
4answers
9k views
Why can't a “procedure entry point could not be located in dll” when I definitely put it in?
I have a really vague problem, but I hope someone can help with it. I was modifying a C++ project and yesterday it was still working, but today it's not. I'm pretty sure I didn't change anything, but ...
22
votes
2answers
10k views
How do I find the PublicKeyToken for a particular dll?
I need to recreate a provider in my web.config file that looks something like this:
<membership defaultProvider="AspNetSqlMemProvider">
<providers>
<clear/>
...
3
votes
1answer
3k 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 ...
18
votes
5answers
64k views
java.lang.UnsatisfiedLinkError no *****.dll in java.library.path
How can I load a custom dll file in my web application? I tried following ways but its failing.
copied all required dlls in system32 folder and tried to load one of them in Servlet constructor ...
3
votes
2answers
2k views
Determine if an executable (or library) is 32 -or 64-bits (on Windows)
I am trying to find out if a given executable (or library) is compiled for 32-bits or 64-bits from Python. I am running Vista 64-bits and would like to determine if a certain application in a ...
6
votes
3answers
957 views
How do I scan/enumerate vst plugin dlls?
I'm trying to build a small program that hosts vst effects and I would like to scan a folder for plugin dlls.
I know how to find all the dlls but now I have the following questions:
What is the best ...
5
votes
5answers
3k views
Visual C++ - Linking plugin DLL against EXE?
I'm in the process of porting a large C++ application from Linux (gcc) to Windows (Visual C++ 2008) and am having linker issues with plugins. On Linux this wasn't an issue, as .so supports runtime ...
18
votes
7answers
25k 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 ...
4
votes
5answers
8k views
How do I use a third party dll in Visual Studio C++?
I understand that I need to use LoadLibrary(). But what other steps do I need to take in order to use a third party dll? I simply jumped into C++ and this is the only part that I do not get (as a Java ...
5
votes
3answers
10k views
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 for which we lost the source code (the company wasn't using source control back then..). This ...