Skip to main content

Questions tagged [dll]

A 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.

dll
0 votes
0 answers
20 views

Periodically resetting the internal state of a 3rd party DLL

In my .NET 8 Windows service I import a 3rd party DLL. Over time the service becomes sluggish (e.g. over 3-4 days of heavy use), and I want to eliminate this DLL as the cause (e.g. perhaps it has some ...
Greg's user avatar
  • 1,703
-1 votes
0 answers
15 views

How to Create a Custom passfilt.dll for Active Directory Password Policy Enforcement? [closed]

I need to create a custom passfilt.dll to enforce a more stringent password policy in our Active Directory (AD) environment. The default AD password policy is not sufficient for our security ...
MAIRU AGINAKO FERNNDEZ DE LAND's user avatar
0 votes
0 answers
34 views

Weird error when injecting a DLL into a process - OSSL_QUIC_client_method could not be located in libcurl-4.dll

I have one of the weirdest problems I have ever encountered, and I can't find anything online about it. For some context: I have to emulate malware for my job, and this currently is requiring me to ...
anomaliesintent's user avatar
0 votes
0 answers
29 views

Why does Dart FFI fail to DynamicLibrary.open a DLL once it has dependencies (error code 126)

I'm using Dart FFI for the first time, and I've started writing a small C++ library that I want to access using dart:ffi. I'm using the Visual Studio build tools, as I'm only targeting Windows, and my ...
Toasdn's user avatar
  • 35
-1 votes
1 answer
83 views

Delphi - Sending Byte to DLL

I am attempting to work with an API and am communicating with this function: BOOL SelectSpeed (int Device, byte SelectSpeed) With the argument for SelectSpeed expected to be values such as 0x01 or ...
Noah Leightley's user avatar
0 votes
0 answers
29 views

Could not load file or assembly 'Microsoft.SqlServer.BatchParser.DLL' or one of its dependencies. The specified module could not be found [closed]

BatchParserError Having an issue with a third party application running via IIS relating to 'Microsoft.SqlServer.BatchParser.DLL' The Microsoft.SqlServer.BatchParser.DLL file is present under the 'bin'...
jround's user avatar
  • 1
-1 votes
0 answers
21 views

CS1503 [argument 4] - Cant convert from "MessageBoxButtons" - (this is enum) to "ulong" [duplicate]

Well i am trying to port MessageBox from c++ to c# and i keep getting this error : CS1503 [argument 4] - Cant convert from "MessageBoxButtons" - (this is enum) to "ulong" i already ...
Mommy's user avatar
  • 3
-3 votes
0 answers
29 views

Add a GUI to a dll in rust [closed]

I'm new to rust and I would like to implement a GUI when attaching a dll to another process. But, after a few tries I still don't succeed. I tried to make gui with egui and eframe, dioxus but nothing ...
Nyutiz's user avatar
  • 1
0 votes
0 answers
9 views

.NET solution that uses third party hardware and DLLs

My team and I are writing a .NET application to run in a Windows environment. We will be using hardware from four-ish different vendors, that each comes with their own dll (the term is unmanaged dlls, ...
Nikolaj Eriksen's user avatar
-1 votes
0 answers
30 views

Why kernel32.dll ignores frequency parameter?

I have tried to make music with kernel32.dll's Beep function/method, like this: rundll32.exe kernel32.dll,Beep 40,100 rundll32.exe kernel32.dll,Beep 50,100 rundll32.exe kernel32.dll,Beep 60,100 ...
user26368465's user avatar
-1 votes
1 answer
63 views

Entry point not found while my DLL file is in a folder next to my EXE

I have my EXE file compiled by Visual Studio. I am coding in C++ and I can debug and run my code correctly with the correct additional dependencies and working directory. I would get this error: The ...
Log-e's user avatar
  • 11
0 votes
0 answers
27 views

What Machine Type does 0xEC20 indicate in a PE file?

In the Windows PE file (Portable Executable) file format, the 16-bit field right after the PE\0\0 signature of the PE header is the "Machine Type" field. Microsoft currently lists about 30 ...
hippietrail's user avatar
  • 16.7k
0 votes
0 answers
13 views

SSDT DLLs for VS 2019

I have installed VS 2019 on Windows Server 2019 with the SSDT 2019 extension installed. I need the v4.0_15x DLL in the GAC for Microsoft.SqlServer.ManagedDTS but its giving me v4.0_11x, v4.0_12x, v4....
Randyness's user avatar
0 votes
0 answers
23 views

How can I let PSSE find my user defined model?

I writed a user defined model of machine's exciter and have created a dll of it. I loaded the dll into model library but I can't find my model in model selection of machine's exciter in dyr.I also ...
memo's user avatar
  • 11
1 vote
1 answer
27 views

Why is linking a dynamic library against a static library apparently easy on Windows but on Linux `-fPIC` makes that difficult? [closed]

I am working on adapting an existing ODBC driver so that it can target Linux. ODBC Drivers are generally distributed as DLLs on Windows and shared objects (.so) on Linux. The driver depends on Boost. ...
William Navarre's user avatar

15 30 50 per page
1
2 3 4 5
1740