I wrote my program in C++ and exported it as a DLL. I have a C# WPF GUI and I want to import the DLL to do the processing.
I have another program (which I do not have the source for, already compiled) that is calling a DLL.I want to swap the DLL out and put my own in its place, to run my own model (inside the DLLs) rather
I\'ve been trying to call a login method of an unmanaged DLL. If I use Declare the login fails. Private Declare Function Login Lib \"dllCore\" (ByVal lpName As String, ByVal lpPassword As String) As
I\'ve been given the assignment to port some library routines to C# so our other application developers can access it, but I don\'t know how to declare the variables so they come into the routine corr
This must be a really stupid question, but I\'m still very green when it comes to C#. Anyway, I\'ve got a DLL and I\'m importing it with a line like this:
I have a DLL written in C in source code. This is the code for the General Polygon Clipper (in case you are interested). I\'m using it in a C# project via the C# wrapper provided on the homepage. This
I would like to import a VB.NET DLL file into C++/CLI. I am having trouble referencing my DLL file. I have tried to find tutorials but with no luck, in particular, I usually find how to import managed
I have a Delphi dll defined like this: TMPData = record Lastname, Firstname: array[0..40] of char; Birthday: TDateTime;
I\'m using EasyHook, a C# library for injecting and detouring functions from unmanaged applications. I\'m trying to hook onto GetDlgItemTextA, which takes the arguments:
I want to temporarily add a directory to the DLL search paths - is there a correct way to do this under Windows 7?