Skip to main content
The 2024 Developer Survey results are live! See the results

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
1 vote
0 answers
21 views

SHOpenFolderAndSelectItems Win32 API doesn't work on Go, but works on C#

I am trying to open a Windows Explorer window with specified items in a particular folder selected. I tried to implement the program using SHOpenFolderAndSelectItems Win32 API with C#. Following the ...
Jerry Lum's user avatar
0 votes
0 answers
7 views

Title: ImportError: DLL load failed while importing _c_internal_utils and OSError: [WinError 126] with Matplotlib and PyTorch

I'm encountering an ImportError and OSError when trying to import matplotlib, seaborn and torch in my Jupiter libraries environment. The specific error messages are: Matplotlib and seaborn Error Torch ...
wzk's user avatar
  • 1
0 votes
0 answers
18 views

absl::Log Initialization in DLL Fails When Called Using ctypes on Windows

I am developing a dynamic library using C++ and utilizing ctypes in Python to call functions from this library. When I try to initialize absl::Log within the DLL, I encounter the following error: ...
Jiawei Lu's user avatar
  • 537
0 votes
1 answer
32 views

Linker can't resolve fmt::v9::detail::assert_fail()? [closed]

I'm trying to convert some old DLLs from 32 to 64 bit architecture. So far its been going pretty smoothly, these are pretty old and use Jam to compile. But pointing to the x64 compiler and switching ...
G. Tabs's user avatar
  • 65
1 vote
0 answers
27 views

Python C++ extension DLL is not imported in python interpreter

I have written a Python extension in C/C++ to wrap my code for Python. I followed CPython documentation in the parts of C/C++ functions each module should provide For example, my module contains: /* ...
girl_coding's user avatar
0 votes
0 answers
20 views

RVA of exported function is different after load

I opened crypt32.dll and looked at its export table using CFF explorer. CFF Explorer I then manually loaded the dll using LoadLibrary and noticed inconsistency between the functionRVA in CFF explorer ...
Spleo's user avatar
  • 1
-2 votes
0 answers
20 views

I get an error that xlntd.dll is missing and I don't know what to do about it [closed]

So I have been working on a c++ project using the XLNT library for writing, reading, etc to and from an xlsx file. Whenever I run the program I get an error that xlntd.dll is missing. I tried to find ...
Jonathan's user avatar
0 votes
0 answers
13 views

How do assembly reference version numbers work?

How are reference version numbers (i.e. minor version numbers) interpreted by .NET? I have a reference to Newtonsoft.Json (for example) 13.0.3 in my project (library). However if I compile this and ...
komodosp's user avatar
  • 3,466
0 votes
0 answers
16 views

Patching windows compatibility settings to an .exe directly or through binary DLL, without the .SDB database?

In the windows compatibility administrator I have the following behaviors added from a database: Is it possible to apply these windows compatibility patches directly to a .exe, or even by loading a ....
David W's user avatar
  • 21
-1 votes
0 answers
8 views

Python DLL Not Supported in OpenTAP Test Plan

I am working on a test automation project using OpenTAP. I have developed some communication drivers in Python and have converted this Python code into a DLL to secure it against unauthorized changes. ...
Sneha's user avatar
  • 1
-1 votes
0 answers
21 views

CreateRemoteThread start address as LoadLibrary [duplicate]

I have recently been expanding my knowledge into DLLs, and have run into something that I can't exactly wrap my head around correctly. CreateRemoteThread(hProc, 0, 0, (LPTHREAD_START_ROUTINE)...
alus21's user avatar
  • 7
0 votes
0 answers
18 views

How to create new attribute/column in a Table in Power Apps using Plugin?

I want to create dynamic attributes in a table in Power Apps. Using the below code snippet to create Attribute in a custom table. Attribute created successfully, but, I'm getting one error dialogue - ...
Aiden Martin's user avatar
2 votes
0 answers
58 views

How to deal with a third party DLL exporting STL symbols?

I am working on a project that is dependent on a third-party DLL. For reasons unknown, this DLL exports (most but not all) of the symbols for std::vector<unsigned char>: $ dumpbin.exe -exports ...
Parker Coates's user avatar
0 votes
1 answer
30 views

Can't load System.Net.WebHeaderCollection

.net 6.0 project, it throw the exception can't find a dll version 6. this is the error: System.AggregateException: One or more errors occurred. (Could not load file or assembly 'System.Net....
user2282331's user avatar
0 votes
0 answers
24 views

Python Cryptography modules

I've installed Cryptography with pip install cryptography, but when I try to use it I get the following error: ImportError: DLL load failed while importing _rust: The specified procedure could not be ...
javadche's user avatar

15 30 50 per page
1
2 3 4 5
1740