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.

learn more… | top users | synonyms (4)

0
votes
0answers
11 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
7 views

Register com dll using WIX per user install

How should I register .Net COM dll using per user wix installer because. It does not ask for elevated permission prompt.
0
votes
0answers
12 views

Intel Compiler ICC(Composer XE 2013) in Binary Compatibility with Visual Studio 10 built DLLs

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
10 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 ...
-1
votes
0answers
24 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
21 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
19 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
28 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
39 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
28 views

Failed to load a dll in the Temp Directory on a Windows Server

I have developed an C# application that run very well in local. But there is a problem when i put on the server. The application use a DLL library (A.dll) in a point of the execution, this A.dll ...
1
vote
0answers
16 views

How to use singleton class with Win32::OLE in Perl?

I have a dll with a singleton class xxx_xxxx. How do I call it from Win32::OLE from Perl? I tried Win32::OLE-> new("xxx_xxxx") and it just crashed. But Win32:::OLE->GetActiveObject is OK. It is a ...
0
votes
0answers
38 views

Visual C++: stop symbols from being exported

I'm working on a dll project and am using the following to clean up some of my exported symbol names: #pragma comment(linker, "/EXPORT:Some_function=_Some_function@4") where Some_function is ...
0
votes
1answer
21 views

OSGI cannot link to native method via JNI at runtime

I am trying to use a method from a DLL in a OSGI-bundle. The DLL gets loaded correctly in OSGI, but I still get an java unsatisfied link error, the native method is not found! When deployed ...
0
votes
1answer
21 views

VBA to C++ dll function call, how to have missing argoument

I have function that I compiled with C++ as dll. I access it via vba no problem everything works great. I want to have one of the arguments to be set to a specific value if the user does not specify ...
0
votes
0answers
21 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
0answers
11 views

Unloading a group of DLLs that link to each other at compile time

I have a DLL (plugin) that dynamically loads another DLL (Python) that dynamically loads even more DLLs (extensions). These extensions are linked back to Python at compile/load time. When I examine ...
0
votes
1answer
18 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 ...
0
votes
1answer
34 views

How to dispose/delete managed object from C++/CLI

I'm working on a native C++ project (/clr enabled) that must use a couple of managed, COM visible C# DLLs. Some of the managed objects implement IDisposable and I would like to call Dispose() on them. ...
0
votes
0answers
7 views

Share DLLs between projects

I have multiple projects in my solution. Each project references other projects. The dlls are quite big and I don't want them to be included in the bin of every project that references it. What are ...
0
votes
2answers
17 views

Wix Install assemblies to GAC

i'm trying to install dlls to GAC, I get this error: The assembly is not strongly named or is not signed with the minimal key length. Code below. How do I get around this? <Product ...
0
votes
0answers
11 views

Should I redistribute wldap.dll with my application?

Should I redistribute wldap.dll with my application? My application will now be supporing LDAP access for authentication. Are any incompatibility issues possible with shipping the dll with the ...
0
votes
0answers
18 views

Error while building a .dll [Visual C++ 2010]

I have a basic dll wallhack here but when i try to build I receive this 3 errors error C2355: 'this' : can only be referenced inside non-static member functions DWORD FindPattern(DWORD ...
0
votes
0answers
11 views

Updating .res file using ant build script

I have a C++ dll project which keeps its version info in .res file. Is there a way to update this file at build time? we are using ANT as a build tool in this case. Intention is to update the version ...
0
votes
1answer
17 views

Execution of DLL code from SQL server

I am trying to create an online MVC 4 web appointment reminder system and I would like some pointers into the direction I should take. At the moment, I am cracking my head trying to figure out the ...
0
votes
0answers
13 views

Need to Improve Sublime Build Config With G++

I'm working in Sublime Text 2 and need a build config for c++. My requirements are: the compiled program to runs in an external window (but I've fixed this with the shell and start command) ...
0
votes
0answers
22 views

IronPython pyc.py -> .exe : How to compile a program that imports an external dll?

I am using the pyc.py file to create a .exe file of my IronPython project. It seems that pyc.py cannot deal with programs that use external dlls. I did several tests and the problem seems to come down ...
0
votes
0answers
24 views

generating report in microsoft office interop word using c# .

I am new to c#.net. I am doing project in asp.net with c#,i have a problem in generating word report using Microsoft.office.interop.word .its working in local system,but when i host to server it ...
1
vote
1answer
35 views

Problems calling a DLL library from C# on iOS because of encoding

I have special problem. I use Xamarin.iOS and try to call a function of a DLL library. The original function is defined as LUALIB_API int luaL_loadbuffer (lua_State *L, ...
0
votes
0answers
12 views

Can't access DLL using local machine path in IIS8 With SignalR

I have a signalR server which is loading an unmanaged Dll using DLLImport and pinvoke (from local machine path c:\serverfolder\bin).I have a HTML5 Client to access the SirnalR server to get the data ...
-1
votes
2answers
37 views

C2380 error while using C# dll in C++

I have a Dll built in C# code and due to some need I want to use it with C++ code. After a long search I found a solution and created abcd.tlb from my abcd.dll file using RegASM.exe. After import of ...
2
votes
1answer
33 views

C++ DLL not executing function after injection

Okay so I made a DLL injector in VB.net a while ago. It works fine with any DLL except for mine. So I know the problem is with the DLL. Here is the injector's code: Private Function Inject(ByVal pID ...
1
vote
1answer
37 views

Using ReadProcess function of kernel32.dll at pascal

I override the function library kernel32.dll in Pascal and OpenProcess function returns 0. Function GetLastError() returns 87 error, that means ERROR_INVALID_PARAMETER 87 (0x57) The parameter ...
0
votes
0answers
16 views

Using GraphViz dll with C#

I was trying to implement this code (unfortunately, the website is down, so I had to dig in the Internet archive). I get an error in RenderDot function: PInvokeStackImbalance was detected Message: A ...
0
votes
0answers
21 views

how to I make Windows stop complaining about missing python dll? [migrated]

When I type "python" at the Command Prompt, it pops up a message complaining that "The program can't start because python32.dll is missing from your computer." I have python 2.7 installed, so I think ...
0
votes
1answer
32 views

I have a .dll that I want to edit with the source code. Which files would I need to edit?

I only want to edit a function in the .dll. I have these following file types: .c, .h, .lib, .def, and the actual .dll. Say I want to change a function's parameters from 1 to 2 variables, which ...
0
votes
1answer
17 views

Missing SDL library?

So, I recently made a project on ubuntu 32 bit, using SDL libraries. But I want to use RAX etc. registers so I installed 64 bit, but I am getting error about missing SDLs. Error: ...
0
votes
2answers
50 views

Callback in Free Pascal from C++ DLL

There are declarations in proprietary DLL header: class CJDummyClass { }; typedef CJDummyClass * J_IMG_CALLBACK_OBJECT; #ifdef __BORLANDC__ typedef void ...
0
votes
0answers
20 views

C# winform picturebox image lost after saving data

I have a winform application in which there is a pictureBox what displays a pretty big image (2550by4500). This bitmap image is transformed from a byte array using unsafe pointer, like this: ...
0
votes
0answers
27 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 ...
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
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 ...
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 ...
0
votes
2answers
656 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) ...
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 ...
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
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 ...
6
votes
3answers
956 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 ...

1 2 3 4 5 177