3
votes
2answers
40 views
How to install .net dll?
In visual studio, when user Add Reference, another dialog box will be pop out and showing a list of .net component. I try to copy a dll into GAC folder but I don't know how to make …
0
votes
1answer
14 views
Where To Put C# Compiled Library DLLs
I've compiled the RibbonLib, then I got two DLLs(Microsoft.WindowsAPICodePack.dll and Ribbon.dll), but where I need to put this DLLs to use they in my Visual Studio 2008?
I'm usin …
0
votes
3answers
172 views
C++ map really slow?
i've created a dll for gamemaker. dll's arrays where really slow so after asking around a bit i learnt i could use maps in c++ and make a dll.
anyway, ill represent what i need t …
1
vote
3answers
26 views
Creating a thread in DllMain?
It seems that when a thread is created from within DllMain upon DLL_PROCESS_ATTACH it won't begin until all dll's have been loaded. Since I need to make sure the thread runs before …
1
vote
3answers
85 views
OpenMP: Causes for heap corruption, anyone?
EDIT: I can run the same program twice, simultaneously without any problem - how can I duplicate this with OpenMP or with some other method?
This is the basic framework of the pro …
0
votes
1answer
73 views
callbacks inside a DLL?
I have a callback inside a C DLL (static void __stdcall) . I want another program to register it as such (by passing it the func ptr) and then call the calback inside the DLL. I ha …
2
votes
3answers
138 views
How to pass and return objects to and from a DLL?
Hello everybody...
I need to return objects from a DLL made in Delphi, to an app made in Delphi, too. The objective is to do a subsystem that can be modify in the future without t …
2
votes
4answers
59 views
Security implications of using .dll’s
Is it practically possible for a malicious developer exploit your application by swapping a genuine .dll file for a modified one.
If so are there steps that can be taken to protec …
0
votes
1answer
46 views
Hooking LoadLibrary API call
I want to load a different version of a DLL than is present in the working directory of the application. For this I need to hook the LoadLibrary call so that when the application m …
0
votes
4answers
44 views
store dll in another folder not in same project other than bin.
ok... now this is something new for me..
I have a utility.dll file which is in my bin folder and i am accessing it in my current application. This part is working fine....
public …
0
votes
1answer
31 views
MATLAB: DLL loaded by mex would not unload?
I have a mex module called p.mexw64 which uses another dll called p.dll
The mex module loads p.dll when it is loaded since it is linking to it's lib file.
Normally, when I want to …
3
votes
2answers
60 views
Execute .NET 3.0 code from Office 2003
I've created a DLL in C# using the .NET 3.0 framework.
Below is the code of my DLL
namespace CompanyName.Net
{
[Guid("F7075E8D-A6BD-4590-A3B5-7728C94E372F")]
[ClassInterf …
1
vote
1answer
97 views
Making a 2D engine: compiling necessary libraries with the engine instead of the game
I'm making a 2D engine in C++, and I want to be able to supply a .dll and a .lib so that games can just include those and everything is fine and dandy.
I've looked at how Ogre doe …
0
votes
2answers
60 views
Accessing dynamically loaded DLL (with LoadLibrary) in Visual Basic 6
I have a need to create a wrapper for a DLL, loading and unloading it as needed (for those interested in the background of this question, see http://stackoverflow.com/questions/166 …
1
vote
2answers
57 views
How to work around memory-leaking 3rd party DLL (no source code) accessed by Tomcat application?
We have a project where a 3rd party DLL is accessed through JacoZoom in a Tomcat application. Apparently the DLL leaks memory (confirmed by the vendor), but the vendor has no inten …
