dll

Antipiracy techniques for a .Net DLL?

What sort of antipiracy techniques are available for implementation in DLLs? What restrictions might they imply on somebody who legally obtained the DLL? ...

libdbi sqlite3 driver binary file

where can i find libdbi sqllite3 dll file for windows. any help would be appreciated ...

After in VS2010 include other library, app fail on start with error 0xC000007b

Hello, I have a problem, downloaded curl developemnt package but if i add in my visual studio .lib file form this program fail with 0xC000007b on startup. I trying download all complete source in this i can download simple vs6 project but without errors i convert it to visual studio 2010, i compile this solution normally, libcurl with...

Incorrect vtable layout for class exported by DLL: request for clarification regarding headers and vtable construction.

Hello all, Although the problem at hand is solved, it has me a little confused as to what data is used to construct the vtables for a class and where the layout for the vtable is stored. If anyone can provide clarification or point me towards some information which might satiate my curiosity, I would greatly appreciate it. Background ...

Valgrind losing symbol info

After running Valgrind, the resultant log file contains a number of errors that look like Conditional jump or move depends on uninitialised value(s) at 0x3D9863AA: ??? by 0x3D986287: ??? by 0x3D9854AC: ??? Uninitialised value was created by a heap allocation at 0x7FCC050: operator new(unsigned int) (vg_replace_malloc.c:214) by...

How to find DLL's loaded into a process and it's location, etc.

I've used Process Explorer, but I'm forgetting of another utility that lets you see where a process is loaded from (image file), and it's dll's in memory and where they got loaded from. Process Explorer for me is only working for managed assemblies. Anything that does native as well? ...

Is it possible to pin a dll in memory to prevent unloading?

Is there some way in Windows to prevent unloading of our dll via FreeLibrary? I.e. to "pin" it in memory for the life of the process? ...

Viewing Contents Of a DLL File....

hello there... is this possible to view contents and Functions of a DLL file... few times ago i was playing with OlyDBG then i found there is option for viewing contents of dll... so suggest me any good tool or soft for this... and suppose i have a DLL named "Python27.dll"... now i need to view the content of this DLL so what do i do...

How to extract dll from the resource

my application uses Bass.dll and i added it to the resource. I wanted it to be extracted before the application starts it chrash. how to void it? ...

problem Accessing .NET DLL resources with res editor

Hello guys, Simple question : why can't I see any resource from my EXE ? compiled in c#, VS 2005, source files contain many .resx files... but so far I can't access them with any resource editor Any hint ? ...

How to generate a separated dll file for the code of a specific namespace

I have an asp.net mvc application, when I compile, it creates one dll file However, I have some code that I would like to re-use in other projects I guess I could create another project, then put this specific code inside it and it would generate a separated dll file. But is there another way to process in order to put the code of a sp...

Need to load a DLL to use SQLiteWrapper in C#

I am trying to access my databases in C#. The databases are SQLite and I am trying to access it like so: string CurrentDatabase = Path.FullName + "\\stock.sqlite"; SQLiteBase db = new SQLiteBase(CurrentDatabase); I am using a SQLite DLL I found here to access the database: http://www.codeproject.com/KB/database/cs_sqlitewrapper.aspx...

google desktop gadget registering a .net 2.0 dll

I am trying to create a gadget which uses a COM visible .net 2.0 dll. And I have been trying to make it work since last one week. Here are a few instructions that I found to make it work: http://markmail.org/message/jkbjk2kjbyyqozc6 But I am not able to understand the 3rd step. I have manually registered the dll classes in the regi...

COM visible dll as ActiveX Object

What is a COM visible .net 2.0 dll? (I have got one) Can I register this dll to the windows registry and use it as an ActiveXObject? For all the dll's registered in registry (HKCR) that have the child node InprocServer32, are accessible with the ProgID through ActiveX? [I am new to this] Thank you. ...

JNI - System.LoadLibrary() finds wrong dependent dll

I am linking a native C++ library into my Java application using JNI. I loaded my library using System.loadLibrary() and everything appears to be working. I added the functionality to my C++ dll which is now making calls into multiple other dlls from third party software systems. Unfortunately one of these dlls is named ZIP.dll. The ...

What is the preferred way of passing data between two applications on the same system?

I have an application (A) that needs to launch another application (B). I need to pass data between the applications. I can think of two approaches. The first is to open a socket. The second is to share data via a dll. The opening socket approach is straight forward. The dll approach I have some questions? I can load plug-in d...

Finding the memory address of a loaded DLL in a process in C++

I've got a running process which is using 'Test.dll'. I would like to know the exact memory location of the start of Test.dll in memory, but can't seem to be able to. My main problem is that I need to write to an offset from this DLL, but I can't exactly type in Test.dll+some offset when I use Read/WriteProcessMemory. Any help would be...

GNU GPL question

I have a C# app that hooks into a GPLed DLL via DllImport. The DLL has its own installer which we plan to package with and run from our own app's installer. Will these require us to GPL our own app as well? ...

Copying of depended-upon dlls in Visual Studio

In my solution, I have a Windows Service called MuskOx. MuskOx has a project reference to a class library called MuskOx.Errands. MuskOx.Errands has project references to class libraries called Kctc.BusinessLayer and Kctc.NHiberate. When I build MuskOx, its output folder gets Kctc.BusinessLayer.dll but not Kctc.NHibernate.dll. This is...

Arrays: Defined in .NET, Applied in VBA

I have created a VB.NET 2008 Class Library that has, for the most part, been working quite well with VBA. I can perform most of the functionality that is required but I have recently run into a pretty severe problem. The reason we are working with both programming interfaces is because we need to be able to do "on the fly" coding and th...