Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
81 views

I'm programming a MFC application that should be internationalized. Currently I'm providing separate language DLLs per architecture (ARM64, x86, x64), but I'm unsure whether this is really necessary. ...
MrTux's user avatar
  • 34.4k
6 votes
0 answers
280 views

We have sandbox.exe, app.exe and app.dll. If users want to run the not sandboxed application, they run app.exe. If users want to run the application in the sandbox, they run sandbox.exe that loads app....
3CEZVQ's user avatar
  • 42.9k
0 votes
0 answers
210 views

I updated Rstudio to the most current version, and then went to re-import data sets from .csv into R, because I changed some data in the physical file. im getting the following error unable to load ...
user30876701's user avatar
0 votes
1 answer
126 views

I have an application that simply calls the CryptProtectData() function: CryptProtectData(...); This call returns FALSE and the GetLastError() function returns 127 (0x7F), which is ...
Alex's user avatar
  • 5,748
-5 votes
1 answer
105 views

I'm learning how to work with DLLs in Windows using C++, specifically with the LoadLibrary and GetProcAddress functions. For practice, I've chosen libcurl as an example to experiment with dynamic ...
Adriano Pinheiro's user avatar
0 votes
0 answers
36 views

I maintain a Qt application that makes extensive use of plugins, and am trying to streamline the logging behavior by moving to Boost.Log. The simplified structure is as follows: MainLibrary.dll: has ...
xariswon's user avatar
1 vote
0 answers
27 views

I am trying to interface Matlab with a C code that I used to read data through UDP. I am using the winsock2 library, and compiling the C code into a DLL file for it to be loaded into Matlab. My C code ...
Tamim Akhtar's user avatar
-1 votes
1 answer
253 views

When I run this code with Visual Studio Code with the function name "MessageBoxA", it works, and it provides me a pointer to the function. However, when I change the name of the function to, ...
Pieter Jansen's user avatar
0 votes
0 answers
88 views

I use LoadLibrary to dynamically load a library in my application. In Visual Studio, I can set different build configurations: x86 or x64 / Debug or Release. I can also build a library from source in ...
Irbis's user avatar
  • 1,581
1 vote
1 answer
746 views

Imagine the following scenario : My Program -> lib A -> lib B -> lib C I have my library A, which loads library B, which loads library C. I have the source code and can modify library A, ...
molnarriso's user avatar
0 votes
0 answers
660 views

I am getting below while loading the DLL file on Windows Server 2016 with AMD processor using Java code. We are generating the DLL file using the Microsoft Visual Studio 2017 from CPP code. Caused by: ...
Rekha Rajput's user avatar
1 vote
2 answers
868 views

I got a problem from my clients. They removed some VC++ projects from their product, only have the dlls . Now they want to process some data with some functions inside these dlls. Let's say this is ...
hzh's user avatar
  • 371
0 votes
0 answers
3k views

I'm working on a CNN image classification project , and I'm using jupyter lab and python . Well , I'm facing this problem and could not resolve it . Ps : ( My windows edition is "Windows 10 Pro N&...
Nour Ahmadi's user avatar
0 votes
0 answers
71 views

enter image description heretrying to use cdll.LoadLibrary function in Python 3.11.0 in Ubuntu 22.04.1 LTS 64-bit. Below error occured. If you have faced this kind of issue please help. Traceback (...
Aykhan.AR's user avatar
0 votes
1 answer
35 views

I have an .so file that I successfully integrated into android studio and I can load the file by calling System.loadLibrary. Is there a way I can see what methods and classes I can use now with this ...
Markusbug's user avatar
1 vote
0 answers
106 views

Our app (C# WPF) is using some C++ libraries, and I'm trying to make it so that the dll could be replaced with a different version on app startup. Simply replacing the file at startup, before it was ...
Domas's user avatar
  • 139
0 votes
0 answers
1k views

I'm trying to make dynamic library with all dependencies linked statically (except system libs). After building it on Windows10 I checked its dependencies with Dependecy Walker. It gave me next output:...
Egor's user avatar
  • 167
1 vote
2 answers
683 views

After injecting my DLL into a process via CreateRemoteThread, I would like to know how this DLL could intercept any calls to LoadLibraryA/W that are made by the injected process. I saw the library ...
Dlionis's user avatar
  • 120
0 votes
0 answers
892 views

I am writing a java web application which needs to load a native C++ dll via java source code. I have placed the dll called "myCPPlibrary.dll" and all the dependent DLLs at the same ...
TestUser's user avatar
  • 977
-2 votes
1 answer
1k views

I have a dll project (Server.dll) containing a Server.cpp Server.cpp #include "pch.h" #include "Server.hpp" extern "C" { _declspec(dllexport) int Server::Add(int a, ...
SADL's user avatar
  • 35
2 votes
1 answer
335 views

We have written some functions in golang and a c wrapper on top of that to invoke those functions. We first build golang code to create an archive file and then we build the wrapper code in c to be ...
Aayush's user avatar
  • 33
0 votes
0 answers
132 views

My main program is build with the /MD flag, and "Multi-Byte" Character set. I have another library, which is build with the /MT flag and "Unicode" Character set, which I'd like to ...
Silverlan's user avatar
  • 2,821
0 votes
1 answer
2k views

env: windows10-64, python3.8.8, CALL relation is --> in file jgtrade_api_func_def.py #!/usr/bin/env python # coding:utf-8 from ctypes import * jgtradeapi = windll....
sodooo's user avatar
  • 21
1 vote
1 answer
4k views

I have asked this questions today, but it was falsely closed and I have no option to re-open it. Therefore, I have to ask it again. I have a class that has a long list of definitions like these: [...
GameDevAlien's user avatar
0 votes
0 answers
736 views

I have two third party dlls: Net.dll and API.dll. API.dll depends on Net.dll When I use System.loadLibrary("Net"); the program reports an error: Exception in thread "main" java....
Dongyue's user avatar

1
2 3 4 5
12