Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
24 views

I have a Windows VCL application written in C++Builder. Some of the UI is implemented inside a DLL rather than directly in the main EXE. The DLL exports a function that creates and shows a VCL form, ...
manlio's user avatar
  • 19.1k
0 votes
0 answers
18 views

I have the following problem: I generate an SBOM CycloneDX (both manually and automatically) from .dll files and then use open-source tools (OST) to search for vulnerabilities. The relevant CVEs are ...
Anna's user avatar
  • 1
0 votes
1 answer
44 views

I try to build some source code containig Win32 API code with GCC 8.3.0 (i686-posix-dwarf) that comes with Strawberry Perl Portable package. It easily builds code, but struggles when it comes to ...
DLWHI's user avatar
  • 145
0 votes
0 answers
62 views

I have a "console" application where I installed the Nuget package "GDAL" (and also GDAL.Native). Besides the exe file, this application also generates a dll that can be loaded as ...
Daniel Möller's user avatar
1 vote
0 answers
78 views

I was experimenting with writing a forward only wrapper that expose the function of the original dll, I decided to play with chromium "chrome.dll", my code seem to work, chromes open but ...
xion's user avatar
  • 61
0 votes
0 answers
69 views

I am trying to call .NET Core 8 (C#) code from C++ dll in Excel VBA. The architecture I’m targeting is: Excel (VBA) → C++ native DLL → .NET Core 8 C# DLL The idea is that the VBA code calls the native ...
Polack77's user avatar
0 votes
1 answer
107 views

I have 2 versions of a vendor DLL that contain same classes but are different for reasons, and have slightly different names. At any rate I either want to load DLLA or DLLB, I do not want to set these ...
user21221040's user avatar
0 votes
1 answer
107 views

I was trying to follow a project in university where we had to import cellpose. The import delivered an error message which could be tracebacked to import torch (see below). Every import was done in a ...
Ehrenmann's user avatar
0 votes
1 answer
53 views

I'm updating the project, in which Qt, PostgreSQL and GStreamer are used. I need to update PostgreSQL to the latest version. PostgreSQL libpq.dll depends on several dlls and one of them is libintl-9....
Eugene's user avatar
  • 87
0 votes
0 answers
37 views

I have App.exe that loads A.dll & B.dll. A.dll loads fips.dll from space c:/App/A/fips.dll B.dll loads Fips.dll from space c:/App/B/fips.dll. I see App.exe is loading both fips.dll from both ...
Priyanka Chauhan's user avatar
1 vote
0 answers
161 views

Before we start, yes, this solution works but only outside Unity. Intent I'm trying to prevent the Windows key from interrupting my game. I wrote a DLL that registers a WH_KEYBOARD_LL Windows hook (...
Emmanuel's user avatar
  • 17.1k
1 vote
1 answer
170 views

I realized a C++ project and I used pydbind11. All work fine on Linux (C++ compilation with CMake produces test executables and Python module that works when I import it, installation with pip install ...
P'tit Ju's user avatar
  • 143
0 votes
0 answers
88 views

We have a VS 2013 C++ project that imports old DLLs from OSISoft PI (pisdk.dll, pitimeserver.dll, pisdkcommmon.dll). #import "pisdkcommon.dll" no_namespace #import "PITimeServer.dll&...
framewater's user avatar
0 votes
2 answers
194 views

Assembly assembly = Assembly.LoadFrom("System.Private.CoreLib.dll"); With C#, I am trying to load that dll, but it keeps saying: Unhandled exception. System.IO.FileNotFoundException: Could ...
Erik343's user avatar
  • 343
0 votes
1 answer
934 views

I'm following along with this YouTube video. I've already run the command pip install labelme opencv-python tensorflow matplotlib albumentations in the VS Code powershell terminal and successfully ...
Otakuwu's user avatar
  • 228
0 votes
0 answers
75 views

I'm trying to inject a DLL into a 64-bit target process using the CreateRemoteThread + LoadLibraryA technique on Windows 10. Both the injector and the DLL are compiled as 64-bit binaries, and the ...
user24930440's user avatar
1 vote
0 answers
45 views

I want to encode image into webp in dart. I created libwebp.dll file (sources https://github.com/jacklicn/libwebp) Now I have to use this library for encoding process: import 'dart:ffi'; import 'dart:...
Alerr's user avatar
  • 151
1 vote
1 answer
124 views

I have a case when the LoadLibrary() function and the delay-load DLL use different DLL search path. Specifically: LoadLibrary("DLL2.dll"); // succeeds while: FunctionFromDLL1(); // fails to ...
Alex's user avatar
  • 5,748
0 votes
0 answers
37 views

I always thought that if I created a project (let's call it "TestNuGet") that referenced another project (let's call it "ReferencedProject") and created the NuGet package for ...
IFrank's user avatar
  • 523
0 votes
0 answers
49 views

please help. I am learning the DirectInput API, but I am having trouble calling a single function DirectInput8Create() in my MSYS2-MINGW64 environment. I verified dinput.dll is in the bin/ directory......
WarrenJay's user avatar
0 votes
0 answers
71 views

I have written a simple DLL injector in C++. Now, I want to unload the injected DLL using the unload function shown below. However, when I run the code, the FreeLibrary function returns 0 and the DLL ...
MahdiKarami's user avatar
0 votes
1 answer
66 views

I'm writing a Python application that uses clr 3.0.3. I'm trying to load a DLL using System.Reflection.Assembly.LoadFrom. My code is basically doing the following: def load_from(dll_paths): for ...
Anton Lahti's user avatar
2 votes
2 answers
128 views

I'd like to write a C++ CLR DLL which creates a thread that does some stuff on his own. The DLL is loaded and maintained by a smoke "classic" C++ win application. Here is the DLL code: #...
Papus's user avatar
  • 35
0 votes
0 answers
62 views

I have a python script myscript.py: import pydmy as tp pydmy is my pybind11 wrapper dynamic library. pydmy will load another C++ library libabc.so. libabc.so is under the same directory as pydmy. In ...
Taitai's user avatar
  • 626
0 votes
1 answer
176 views

My new ARM64 laptop is forcing me to upgrade a project (C# API) from ASP.NET Core 3.1 to 8.0 (I had been planning to upgrade anyway as it is long overdue but was hoping to finish a new feature first!)....
Ego Placebo's user avatar

1
2 3 4 5
523