Dll Questions
Ad
Renaming DLL functions?
Is there a way for me to name my exported dll functions? when i use a dll export viewer the function names shown are the full declarations. i
R package with C code, 'no such symbol' in package dll
I am writing an r package, and started to include c code in it. following instructions from
VC9 and VC8 lib compatibility
(the original question was asked there :
Embedding one dll inside another as an embedded resource and then calling it from my code
I've got a situation where i have a dll i'm creating that uses another third party dll, but i would prefer to be able to build the third party dll
Building and deploying dll on windows: SxS, manifests and all that jazz
Since vs 2005, i see that it is not possible to simply build a dll against ms runtime and deploy them together
Is it correct to export data members? (C++)
As the title suggests, is it correct or valid to import/export static data from within a c++ class? i found out my problem - the author of
Visual Basic 6 check if dll exists
I am in need of a little help, i'm trying to exit sub, if a test.dll is detected (test.dll is just example), and if the dll does not exist, just
Safearray in Python for Ctypes
I was trying to use a function in dll provided using python ctypes. i do know that writing a code in c++ would be more efficient and nice option.
Use of Name::Class1 from Name::Class2 in the same Name.h file fails
I've a header file 'custom.h' with two classes, resizelabel and resizepanel, used to build a dll containing custom controls. if i use
Could not find Nlog or one of its dependancies - edge-js
I'm trying to use this
Ad
pass and return an array of doubles through c function inside Python
I successfully called a dll library in my python code. all the by-value functions worked smoothly. the problem is that my c function require a
How to pass (rapidly updated) variable from ctypes C code to Python? Pass by reference?
I'm trying to develop c code that will be compiled to a dll (or .so for linux) with the purpose of processing some external input at high speed
import _ssl error,DLL load failed ,Python 37 Anaconda Windows 10
I am struggling with _ssl issue on win10. i have moved python packages and code from windows 7 to windows 10. in the starting i was facing below
Python calling an SDK function in DLL of a sensor that takes pointer IP and port and return a void* (void* a handle to the profile sensor.)
I am just new in python. i am trying to connect to a laser sensor through its dll library. the sdk functions in this library are compiled in c++
python can never call a c++ dll or so file including inheritance logic?
Class a{ a(); void a(); virtual void v(); } make this to liba.so class b : a { b(); void b();
Unity android wifi socket communication through Android DLL
We are able to established socket wifi chat between two native android app and two unity based android app. now according to new requirement we
Xamarin.Android nuget package references System.Web
General i am developing a mobile application using the xamarin framework. the project is quite large and uses several nuget
Python: do dlls loaded by ctypes share the same memory space
I am trying to do something with dlls in python which i know i can do in c++, but i am getting a memory exception. if you load two dlls in
Importing .NET Standard 2.0 class library with dependencies using Python.Net
I have a .net standard 2.0 class library that i'm trying to use from python. the library has dependencies on some private and public nuget
cmake to link to dll without lib
I've been given a dll without libs. the dll comes with hpp and h files. i used dumpbin to create an exports.def file and lib to create a
forcing ctypes.cdll.LoadLibrary() to reload library from file
I have the following code import ctypes lib1 = ctypes.cdll.loadlibrary("./mylib.so") # modify mylib.so (code generation and
Ad
Calling a DLL function with an allocated character buffer that the function fills in Inno Setup
I am using (unicode) inno setup 6.0.5 on windows 10 64-bit. the exported symbol, i want to use has the signature:
Use NULL pointer in C shared library
I am creating a c shared library. i provide a function to the user that has the declaration below: int getresults(elements** el)
Dll injection cant load a function address
Im trying to hook the keyboard with a dll injection in c. when i try getprocaddress on the keyboardproc function the getprocaddress return null
Creating Backwards Compatible Drop In Statically Linked DLL
I have a c-based dll that i wrote years ago for a project and it exports a set of functions that define an api. now i need to re-write this dll's
How to map double-C-struct-pointer in C#?
I have the following c-calls to libacl: extern int acl_get_entry(acl_t acl, int entry_id, acl_entry_t *entry_p); extern int
Script that outputs all DLLs used by exe
In cmd the line tasklist /m /fi "imagename eq xxxxx.exe" > output.txt will output the dlls used by all
Call function by URL in Flask
I have a c++ dll. i want to make a flask server to call the functions in this dll. so i use ctypes inside
Marshalling a complex structure from C# to C
I'm reading all about structure marshalling between c and c# in 64bit environment without success. what i need to do is to pass the
ctypes.ArgumentError when calling DLL functions with Python
I'm using ctypes to call functions in a dll file according to a description file that describe the dll functions' parameters and returns. here is
Why aren't LIBs and DLLs interchangeable?
Lib files are static libraries that must be included at compile time, whereas dll files can be "dynamically" accessed by a program
How do I use the correct dll files to enable 3rd party C libraries in a Cython C extension?
I have a c function that involves decompressing data using zstd. i am attempting to call that function using cython.
Ad
Specifying the DEF file when compiling a DLL with Clang
I am trying to compile a dll using clang in windows clang -shared structs.c -o structs.dll but the symbols
C++ to Delphi dll call
I am trying to convert this code to delphi 7 libexport int __stdcall my_getdllinfo(const char **pp_version, const char
Linker error encountered upon attempting to use RtlInitUnicodeString()
The function rtlinitunicodestring() used to initialize the unicode_string structure cannot be used as a linker error
Can .EXE use symbols from an indirectly imported DLL?
I have a sample.exe project that depends on common.dll . i need to use libcurl.dll in both sample.exe and common.dll . do i need to import
Call C++ function from inside dynamically loaded dll
I'm writing a c++ programm that dynamically loads a dll at runtime and calls a function within that dll. thats working fine but now i want to call
C# dll injection not loading dll
I know there are a few similar questions here on stackoverflow, but none of them solved my problem. so i am writing a c# framework for low
Convert code from C to Delphi (work with DLL)
I need your help ;). try to work with sdr-receiver (blade rf). i have dll (bladerf.dll). i have some code on c (struct, enum and function). code
Compiling dynamically linked library in a makefile
I am trying to run my library using a make file. i currently have a dynamic library called libname.so which i created by linking the object files
How can I place a dependency of a plugin DLL in a specific location relative to it, so that it's found during runtime?
I'm writing a program a.exe, which uses loadlibrary to load an external dll b.dll during runtime. b.dll resides in a specific
When building a DLL which will be loaded using LoadLibrary, do I need to link with the dependent binaries or is including the headers enough?
I'm building a plugin (extension module) system for a language interpreter i'm writing in c. during runtime, the program uses
Importing DLL using a module definition file (.def)
I want to create and ship a windows c library. i've read there are two ways to do it, one using __declspec(dllexport) and __declspec(dllimport) in
Ad
use HDF5 dll in Delphi application
I would like to work with hdf5 (https://www.hdfgroup.org/) in my delphi 10.2
How to safely update a running dynamic library?
I am implementing a live code reload mechanism for a program in c, and i have a function like this:
Use if() from c# .dll as if() in Winforms
I've been trying to figure out how use my c# dll with c# windows forms app and what i want to achieve is that inside my dll i'll create a if()
Why won't Entourage work with Exchange 2007?
So this is it more than programming but google found nothing, and you guys are just the right kind of geniuses. my exchange server
How to know where the pdf files is looking for source code
I have an external dll and a pdb file from c# code. i have the source code downloaded on my computer. in
Problem with variables while trying to make a c# library(.dll)
I want to make a library that sums 2 numbers(a and b) and then stores the value into a result variable inside a library(.dll). i tried this:
How to get my own code's module handle?
possible duplicate:
How to recover from lost source code?
I have a one-function dll that exports gethash(). however, the source code for this dll is lost. i need to integrate this code into my msvc++
What is the correct way to sequence DLL versions
I've always understood that each number in the version (ex: 1.2.3.4) is treated as an regular int value. we are using some third party dlls that
How to fix DWMAPI.DLL delay-load dependency under WinXP?
I have built a .dll under winxp that claims it can't find dwmapi.dll when it's loaded. the problem is that this dll is a vista dll, and this a
application couldn't be initialized error (manifest file problem)
I am trying to use a library (.dll) in my project. everything seems to be set up fine. it all works in release mode. when i go debug on it, i get
Ad
Working with Visual Studios C++ manifest files
I have written some code that makes use of an open source library to do some of the heavy lifting. this work was done in linux, with unit tests
Generate manifest files for registration-free COM
I have some applications (some native, some .net) which use manifest files so that they can be
Windows path searching in LoadLibrary with manifest
If you call loadlibrary without a path (e.g., loadlibrary("whatever.dll"), windows will generally follow its standard
How does one install .net dlls without .NET SDK or Visual Studio?
I need to deploy a few .net dlls. they need to be put in the gac and the required entries need to be in the registry. on my machine i have both
Windows API commctrl.h using application doesn't work on machines without the Platform SDK
I have written something that uses the following includes: #include <math.h> #include <time.h> #include
How can I use classes from VisualBasic-Express in VBA for Excel or Access projects?
I saved my vb-express code as .dll and registered it with regasm and made a .tlb file. but when i try to run a function from it in an
Can a Windows dll retrieve its own filename?
A windows process created from an exe file has access to the command string which invoked it, including its file's path and filename. eg.
wxPython import error with Windows install
I have installed python 3.4 and wxpython phoenix on windows 10. i go into eclipse and add wxpython to the external libs in my project, but when i
Ad
Blog Categories
Ad