dll Questions

4

Solved

When I tried to open VScode, I got an error popup saying "The code execution cannot proceed because ffmpeg.dll was not found. Reinstalling the program may fix this problem". Reinstalling ...
Glorification asked 20/3, 2022 at 22:33

2

Solved

My ultimate objective is to build a class library (Calculator.dll) in C#, containing functions that will be made accessible to Excel via VBA. I had hoped to avoid the need to register the dll, and ...
Parenteral asked 30/12, 2022 at 22:50

3

Solved

I'm new to the "hidden/dark places" of C++ and I was wondering how to load a .dll file from a different directory or a sub-directory inside the one where my current executable is running Ex: ./My...
Devland asked 2/7, 2013 at 8:3

3

Solved

When I try to export the following function as a dll: extern "C" __declspec(dllexport) void some_func() { throw std::runtime_error("test throwing exception"); } Visual C++ 2008 gives me the fol...
Hysterical asked 25/1, 2010 at 19:35

2

Solved

I'm trying to compile something that depends on gtkspell, which depends on enchant, under MinGW. I'm getting errors like gtkspell/gtkspell.c:757: undefined reference to '_imp__enchant_broker_init'...
Traver asked 7/4, 2012 at 23:28

3

Solved

I built a .pyd in Visual Studio 2019 (Community) that provides a wrapper for some functionality that's only present in the LibRaw. The solution compiles successfully without any warnings or errors....
Atalee asked 22/1, 2020 at 13:6

2

Solved

Context Are there commands to enhance the error message that is received such that python displays which .dll file it cannot find? For error: python test_cv2.py Traceback (most recent call last): ...
Stalag asked 4/7, 2020 at 17:33

9

I have a .dll from c++ and I want to debug it in C#, but I don't know how to. When I compiled the c++ project, Visual studio asked me to execute an ".exe". I supposed that I had to create a proje...
Interscholastic asked 30/6, 2009 at 10:24

2

I'm building a Python API around a black box .NET DLL using Python .NET. The DLL is only doing networking operations. The DLL require me to run a windows message pumping loop, otherwise the network...
Aguila asked 18/8, 2017 at 9:26

1

I am trying to run a function in Excel from a dll made via C++. I have followed the steps in the Microsoft DLL creation overview and successfully gotten the DLL/client example working. I've also fo...
Aluminothermy asked 23/12, 2020 at 4:27

3

Solved

I'm having this error when trying to attach package tidyselect and when trying to call tidyselect::any_function. The error happens in Rstudio or command line alike, in RStudio it is triggered as so...
Hamburg asked 3/9, 2018 at 13:12

1

Solved

When using MinGW, it's easy to run into a DLL hell, i.e. your program not running because it either doesn't find the required DLLs or finds incompatible versions of them. This can manifest itself a...
Alabaster asked 9/6, 2024 at 10:45

5

On Linux/GCC I can use the -rpath flag to change an executables search path for shared libraries without tempering with environment variables. Can this also be accomplished on Windows? As far as I...
Jone asked 20/9, 2008 at 10:58

5

Solved

The top-level CMakeLists.txt contains: include(CTest) add_subdirectory(lib) add_subdirectory(demo) add_subdirectory(test) lib/CMakeLists.txt is essentially: add_library(MyLib <sources>) ...
Ratiocination asked 17/12, 2019 at 15:1

2

I have read similar issues but I believe that the solution to mine might be new: I have recently upgraded my Windows 10 to PHP 8.2.1, and today I added extension=ext/php_imagick to php.ini, and whe...
Burt asked 16/1, 2023 at 18:35

5

Solved

This is a CLR project. I'm importing two DLL files with the same name, quizz.dll (I rename the old version as legacyquizz.dll) and I include the newer version as quizz.dll into a legacy converter t...
Glimp asked 22/12, 2012 at 8:15

4

Solved

Symptom is that the .NET application starts correctly on the majority of PCs (Windows 7 and XP) at the user's site, but on one machine it consistently fails to start with the error "The applic...
Clarence asked 11/7, 2012 at 12:43

2

AFAIK it works like this with ICD loader extension: ICD (installable client driver) = proprietary OpenCL implementation = OpenCL runtime; You can find it in files like amdocl.so/dll or IntelOpenC...
Stratiform asked 3/6, 2016 at 11:38

14

Solved

I am getting following error in my C# visual studio project: The type or namespace name 'VisualStudio' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) I al...
Miraculous asked 28/11, 2012 at 10:6

8

I have developed an C#, ASP.NET web application in a Windows 7 machine using Visual Studio 2012. Now i had imported the entire project into VS 2017 running on windows 10 machine, and when i try to ...
Stalkinghorse asked 3/2, 2018 at 22:47

9

Solved

I found similar questions but no answer to what I am looking for. So here goes: For a native Win32 dll, is there a Win32 API to enumerate its export function names?
Clumsy asked 14/7, 2009 at 21:25

33

Whenever I tried to copy 4 files into my bin folder, after stopping the main service, I am getting an error with one file (TexteDll). The error is: Cannot copy TexteDll: The requested operation ca...
Trabeated asked 11/1, 2011 at 13:56

11

I have a DLL file. How can I view the functions in that DLL?
Shockheaded asked 14/12, 2010 at 11:58

2

I'm trying to use a open source library from a Windows application, and the only pre-built version I can find comes as a file called "lib.dll.a" What format is this, and can I convert it to a norm...
Arita asked 8/10, 2008 at 23:19

2

I want to use the C++11 keyword thread_local in our Open Source library, which can be dynamically or statically linked on numerous platforms (Windows, Linux, Mac OS, ...), in the context of a stati...
Derrickderriey asked 16/8, 2015 at 12:3

© 2022 - 2025 — McMap. All rights reserved.