The loadlibrary tag has no wiki summary.
0
votes
1answer
15 views
usage of android native library(.so)
I have a question regarding android application programming.
Q1. can I make a game with *.so file? and just let android part
load the so file?
Q2. what happens to the system when I load the so file ...
1
vote
1answer
46 views
LoadLibraryExW() fails, last error is ERROR_MOD_NOT_FOUND, but no missing dependencies?
A customer is using our dll which is creating a child process which uses an open source library, which ultimately fails because of a call to LoadLibraryExW(), the last error returned is ...
0
votes
1answer
18 views
Languages supporting exporting functions using Dynamic Link Libraries [closed]
What programming languages do support writing DLLs for Windows with functions which can be loaded using LoadLibrary and GetProcAddress?
0
votes
2answers
45 views
C# LoadLibrary ERROR_NO_TOKEN
I'm loading a MFC dll with dependencies (let's say I'm loading D.dll, which depends on C.dll, B.dll and A.dll) in C#.
Here's my code:
[DllImport( "kernel32.dll", CharSet = CharSet.Auto, SetLastError ...
-1
votes
3answers
70 views
DllImport or LoadLibrary for best performance
I have external .DLL file with fast assembler code inside. What is the best way to call functions in this .DLL file to get best performance?
1
vote
0answers
11 views
Need an unmanaged C++ function which can generically invoke many unmanaged DLLs and their functions on behalf of the caller
In unmanaged C++ code on a 32-bit or 64-bit platform, suppose I want to provide an API function called CallDLLFunction which will invoke a DLL function on behalf of its caller. This API function will ...
0
votes
2answers
65 views
Couldn't load opencv_java from loader
I'm needing help!! When I run my project, appears this error:
Caused by: java.lang.UnsatisfiedLinkError: Couldn't load opencv_java from loader ...
1
vote
0answers
17 views
how to load a dll into remote process in which kernel32.dll not yet loaded
i want to load my dll into address space of remote process in which kernel32.dll is not yet loaded . so to load my dll into remote process i need LoadLibrary function but wchich is present in ...
0
votes
0answers
43 views
OutOfMemoryException when unloading AppDomains after calling FreeLibrary
I have a plugin framework that needs to run plugins one at a time in a separate app domain. Some of these plugins may use unmanaged C++ dlls. Different plugins may depend on different versions of ...
1
vote
1answer
15 views
Failing to marshal char** between native x32 shared library and matlab
I'm trying to call a function in a native shared library from matlab using loadlibrary and calllib but I'm failing to obtain a string that is allocated from inside the library as char**.
Here is the ...
1
vote
2answers
110 views
System.loadLibrary does not work. UnsatisfiedLinkError for the second lib in chain
I have java program Client.class that uses cpp shared library libclient.so via JNI.
libclient.so is built as shared and uses cpp shared library libhttp.so.
libclient.so and libhttp.so are placed in ...
0
votes
0answers
29 views
LoadLibrary fail with 87
I try to load a dll with LoadLibrary and it fail. GetLastError return 87.
here is my code
dll:
#include <Windows.h>
#include <iostream>
BOOL APIENTRY DllMain( HMODULE ...
0
votes
1answer
72 views
python fix standalone exe created by py2exe including pyd/dll
I have a pretty simple script and I converted it to exe format with py2exe. I then moved it to a Windows 7 machine that doesn't have Python.
When I run it I get the following error:
...
1
vote
0answers
62 views
Cannot load lib from /vendor/lib in android 4.0.3
I preinstalled app into /vendor/app, and lib into /vendor/lib. when I start app, exception caught:
> E/AndroidRuntime( 2446): at
> android.app.Activity.performCreate(Activity.java:4465)
...
2
votes
2answers
108 views
Java JNI: How to load library multiple times?
I am trying to load the same library file using System.loadLibrary or System.load. The reason I do this is because they are the same code but different configuration. I want those 2 library files to ...
1
vote
2answers
156 views
How can I use complex.h for Android NDK?
I have native source code written in C that I would like to run on my Android device (Nexus 7). I already successfully did lots of research and online tutorials on running native code on Android using ...
-1
votes
1answer
61 views
get string from a dll inside another dll
Here is the case:
I made a dll with a function1 inside as below:
int function1( char *inVal, char *outVal)
{
....
strcpy(outVal,dn.commonname.c_str());
}
in the last line outVal is pointed to ...
1
vote
0answers
114 views
lua loadlib dll
I am trying to load a dll (it's not my dll) and it's written in C++
There are no exports to my knowledge, but it does what I need it to do once loaded.
assert(package.loadlib(dllfile,'')()
This ...
0
votes
1answer
51 views
Get char * from DLL
I have a problem. I have a function in my dll which is defined as below:
int function(char *inVal, char *outVal, int *retVal)
I successfully load my dll in a console application using LoadLibrary, ...
0
votes
1answer
103 views
Unmanaged Exports with Arrays
I'm using RGiesecke DLLExport library to produce a C# DLL that can be dynamically loaded from Delphi. I have a method like:
[DllExport("GetVals", CallingConvention = ...
0
votes
1answer
71 views
Would I need specific permissions if my program is copying a dll file to the temp directory?
Question:
I'd like to know if I would need to ask for specific permissions and/or do something extra to make it "trustworthy" in case my program copies a dll file multiple times to the temp directory. ...
0
votes
0answers
67 views
LoadLibrary function Hooking
I am trying to block save as option for a particular Document, for that i am hooking LoadLibraryW Function, when the user click save as option on particular document control hit the my callback ...
0
votes
0answers
181 views
LoadLibrary libeay32.dll error R6034, manifest exists
Empty 32bit VS 2008 project under win 7 64 bit,
#include "stdafx.h"
#include <windows.h>
#include <userenv.h>
#include <iostream>
#include <winbase.h>
int _tmain(int argc, ...
0
votes
1answer
357 views
0xC0000005: Access violation writing location 0x00000000
I have a weird problem in building my debug project. I have searched the web but unfortunately I have not found any clue yet.
I'm trying to load a dll in my console application project. My dll has ...
0
votes
0answers
64 views
Matlab Error: Loaddefinedlibrary error for adding library
I am a newbie in matlab.
I want to add a library to matlab.
I used addpath and loadlibrary functions for doing that.But when it run i get the following error:
There was an error loading the library ...
1
vote
0answers
185 views
Python Ctypes Load Library
I am using windows 7 64 bit machine. I installed Visual studio 2010 and developed a simple win32 dll to add 2 numbers.. The dll is created and i used a test application to test the dll and it works ...
0
votes
2answers
147 views
NoClassDefFoundError after loadlibrary
I made a native extension for Flex which works fine. When calling Java functions from Flex I get the desired result. But if I want to load a shared library in Java the application crashes at startup.
...
1
vote
1answer
929 views
DLL Load Library - Error Code 126
This time I am having a problem, I googled for a long time and I didn't find any solution.
I'm using the 'LoadLibrary' from the Windows API, when I run the application, it throws me an error code 126:
...
1
vote
1answer
308 views
Android : link prebuilt shared library (.so) within jar file in NDK
I've a static java library compiled as a jar file.
This jar loads a .so library using System.loadLibrary.
Then another Android application project links statically the jar file.
Everything is ...
0
votes
1answer
433 views
LoadLibrary failed with error 998: Invalid access to memory location
I am trying to do the get started android app - there are two locations and two methods I have tried, both same result:
LoadLibrary failed with error 998:
Invalid access to memory location
...
3
votes
2answers
231 views
Load “comctl32.dll” from desktop app in Windows RT failed
Using the method described in http://forum.xda-developers.com/showthread.php?t=1944675 I executed a win32 desktop app in my surface with Windows RT.
Loading windows dlls like user32.dll, ...
1
vote
1answer
104 views
python script accessing winscard.dll
Hi all i am writing a python script to access the winscard.dll of windows.
lib = cdll.LoadLibrary('winscard.dll')
hSC = c_long(0)
lRetval = lib.SCardEstablishContext(0,None,None,pointer(hSC))
the ...
0
votes
1answer
181 views
How to load native library to android library project
First, my project structure is like this:
Android project A --> Android Library project B(contains some native so library) --> Java library C.
how the project A reference the android library ...
0
votes
2answers
95 views
where is LoadLibrary A looking for the file?
My code uses LoadLibraryA("someDLL.dll"); What is the path it starts searching for the file someDLL.dll?And another question : is LoadLibraryA function case-sensitive?I mean if I have SomeDLL.dll it ...
2
votes
2answers
89 views
How to sub a C++ class from a .so on Linux?
I am using the ACE library to do some reactor jobs. On linux ,the default ACE compile output is the libACE.so. I usually to compilte it with the -lACE compile option, but this rely on whether i have ...
-1
votes
1answer
70 views
Failing to dynamically link to an API with C++
I'm using the following code to dynamically link to the LoadIconWithScaleDown API, for my code to be able to run on Windows XP:
HRESULT (WINAPI *pfnLoadIconWithScaleDown)(HINSTANCE, PCWSTR, int, int, ...
1
vote
0answers
149 views
LoadLibrary failed with error 0, how to troubleshoot?
LoadLibrary returns handle 0, but GetLastError() also returns 0. Ideas?
One thing to note is this piece of code used to work fine, I did not alter anything. I have just cloned project's repository ...
2
votes
1answer
129 views
load java native file lib
I would like to use some native files and use some files out of an android project. I need this files for my own java project and need to import the lib.
I am trying to load the lib with:
static
{
...
1
vote
2answers
470 views
LoadLibrary with Absolute Path returns Incorrect HMODULE with No Error
I have some code which is trying to load a Dll.
I have encountered an odd 'error' with this. When trying to load the dll from an absolute path, I get a Non-Null HMODULE that gives no windows error ...
4
votes
2answers
326 views
C++: Manifests and dynamically loading DLLs from different directory
Long story of what I'm trying to achieve
I'm working on a program that dynamically loads DLLs as plugins. I'm compiling the program using Microsoft Visual C++ 2008. Still, let's assume that any ...
0
votes
2answers
196 views
Is it safe to call LoadLibrary from DllMain if you've used a kernel driver to ensure yours is the first library loaded?
I've been looking at some hooking code which selectively loads a library into certain processes and then hooks certain native API functions (using Detours). The chain of events looks like this:
...
0
votes
0answers
184 views
Explicit DLL Linking with LoadLibrary and 2 DLLs in C++
this is my first post at stackoverflow and i`m starting with a problem.
Im writing a gui application with qt in c++.
At the moment I'm stuck on loading and saving dlls which were passed to me.
For ...
4
votes
1answer
87 views
Address range of a dynamically loaded library under Windows
I have a working program that loads plugins with LoadLibrary.
New requirement: at some point in the code, I'm given a pointer, and I need to test whether this pointer points into the code or static ...
1
vote
2answers
288 views
loading a .dylib library to matlab
I am trying to add a simple library to matlab using the "loadlibrary" function. I first try linking the gcc compiler to matlab with mex -setup and get this:
The options files available for mex are:
...
2
votes
3answers
870 views
Load the same dll multiple times [closed]
I want to load the same dll e.g. Lib.dll multiple times!
-> need creating a new process (CreateProcess function) for every LoadLibrary!
Anyone have an example or some hints?!
Thx and greets
0
votes
1answer
83 views
why so lib is loaded more than one time by certain process?
b7f27000 84K r-x-- /lib/libpthread-2.5.so
b7f3c000 4K ----- /lib/libpthread-2.5.so
b7f3d000 4K r---- /lib/libpthread-2.5.so
b7f3e000 4K rw--- /lib/libpthread-2.5.so
b7f3f000 ...
0
votes
2answers
378 views
LoadLibrary fails with ERROR_SXS_CANT_GEN_ACTCTX (the dll depends on VS2005 CRT 8.0.50727.4053)
I have a third-party DLL that is built with Visual Studio 2005, which I use in a project that is built with Visual Studio 2008. This DLL depends on VS2005 CRT, version 8.0.50727.4053.
On Windows 7 it ...
0
votes
3answers
141 views
Can I Load Resource Library (DLL) for x64 build in x86 app?
I want to load unired.dll which used in default Windows Printer driver resource file.
I can load unires.dll for Windows Vista x86.
It's located in C:\Windows\System32\spool\drivers\w32x86\3
But now ...
-1
votes
1answer
216 views
Stackoverflow exception in windowsbase.dll when loading an unmanaged dll in managed aplpication
I am trying to load an unmanged DLL using loadlibrary from a a managed applciation every now and again when making a call on the dll I get a stackoverflow exception:
"An unhandled exception of type ...
2
votes
1answer
213 views
Java loadLibrary() cannot locate library after switching from 64 bit jdk to 32 bit
I am attempting to load a native library which accordingly loads an original dll. However on another computer running XP 32bit, it works fine. When executed on a win7 64 bit system it would fail to ...

