Tagged Questions
The System.Runtime.InteropServices.DllImportAttribute class allows managed .NET code to reference a Windows DLL through the magic of Platform Invocation (P/Invoke for short). The System.Runtime.InteropServices namespace contains a wealth of tools to allow .NET to efficiently and effectively use legacy DLLs.
20
votes
4answers
14k views
Embedding unmanaged dll into a managed C# dll
I have a managed C# dll that uses an unmanaged C++ dll using DLLImport. All is working great.
However, I want to embed that unmanaged DLL inside my managed DLL as explain by Microsoft there:
...
12
votes
1answer
3k views
Specify the search path for DllImport in .NET
Is there a way to specify the paths to be searched for a given assembly that is imported with DllImport?
[DllImport("MyDll.dll")]
static extern void Func();
This will search for the dll in the app ...
12
votes
5answers
5k views
PInvokeStackImbalance C# call to unmanaged C++ function
After switching to VS2010, the managed debug assistant is displaying an error about an unbalanced stack from a call to an unmanaged C++ function from a C# application.
The usuals suspects don't seem ...
11
votes
1answer
299 views
Encounter error using DataExplorer.exe to connect to home grown DBX4 driver
I have written my own DBX 4 in Delphi 2010 for Firebird database. The driver is a dynalink driver and it works fine with TSQLConnection.
Recently, I try to use the DataExplorer.exe released with ...
10
votes
2answers
498 views
Why/when is __declspec( dllimport ) not needed?
In a project using a server.dll and a client.exe, I have dllexported a server symbol from the server dll, and not dllimported it into the client exe.
Still, the application links, and starts, without ...
9
votes
6answers
2k views
C# Struct No Parameterless Constructor? See what I need to accomplish
I am using a struct to pass to an unmanaged DLL as so -
[StructLayout(LayoutKind.Sequential)]
public struct valTable
{
public byte type;
public byte map;
...
8
votes
6answers
282 views
Is there a more painless way to call Win32 from C#?
Every few months I find myself needing to call Win32 from C#. Though I've done it a dozen times, I've usually forgotten the exact machinations, so I poke around the web or old code and figure out what ...
7
votes
3answers
1k views
C# Marshalling double* from C++ DLL?
I have a C++ DLL with an exported function:
extern "C" __declspec(dllexport) double* fft(double* dataReal, double* dataImag)
{
[...]
}
The function calculates the FFT of the two double arrays ...
7
votes
4answers
343 views
How can I use a C# (managed) dll that I don't have?
How can I correctly reference a C# DLL that I don't have physical access to? (I actually have the DLL, just not all it's dependencies.)
Background:
On the target computer, there is a program and ...
7
votes
5answers
8k views
Exporting functions from C++ dll to C# P/Invoke
I have built a C++ dll that I would like to call from C# code. I'm able to call one function, but the other throws an exception when the C# code tries to load the dll.
The header looks like this:
...
6
votes
1answer
102 views
How to pass a list of objects from C++ to C#?
My first question here :)
I am working with an application written in C++ (a map editor for a game) that has the front end UI written in C#. Since i'm new to C# i'm trying to do as much as possible ...
6
votes
1answer
199 views
Explanation about high-resolution performance counter and its existance related to .NET Stopwatch?
Inside static Stopwatch constructor we can see following code, that basicly checks whether high-resolution performance counter exists.
static Stopwatch()
{
if ...
6
votes
6answers
271 views
“Using” vs [DllImport]?
I'm a noob obviously.
I was wondering what is the very top most declared references and why we still need to use DllImport? I'm talking C#.
Thanks,
6
votes
11answers
1k views
Win 7 DllImport C# Odd error, Invalid access to memory location?
I am using DllImport to access some functions in a C++ dll from my C# application.
This code works fine on my dev laptop, which is Windows 7 64bit, the dll itself is 32 bit, so I run the process ...
6
votes
1answer
120 views
What happens when I DllImport a function that is not available on the runtime platform?
I previously asked, How to determine the target of a symbolic link or Reparse Point?
...and got an answer that suggested the use of the Win32 function GetFinalPathNameByHandle, a function first ...
6
votes
3answers
1k views
Parameterising DllImport for use in a C# application
We have a supplier who provides a library for access to their hardware. Unfortunately, if you have multiple devices, you need to import their library multiple times, with different dll names. As a ...
6
votes
4answers
3k views
Is there any native DLL export functions viewer?
Is there any free native Windows DLL export functions viewer, which shows the function name, and a list of their parameters?
Thanks.
6
votes
7answers
4k views
Setting dllimport programatically in c#
I am using DllImport in my solution.
My problem is that I have two versions of the same DLL one built for 32 bit and another for 64 bit.
They both expose the same functions with identical names and ...
5
votes
5answers
198 views
How can I specify a [DllImport] path at runtime?
In fact, I got a C++ (working) DLL that I want to import into my C# project to call it's functions.
It does work when I specify the full path to the DLL, like this :
string str = ...
5
votes
2answers
109 views
Logoff after logonuser on C#
I use advapi32.dll's logonuser method to access data over our network.
I know it change the thread's user to the information i give it, but i was wondering if there's a way to reverse it.
I want to ...
5
votes
2answers
194 views
ASP.NET DllImport Causes App to Quit
I heavily suspect my problem is due to some security issue but here's the full description just in case I'm mistaken.
I have a DLL that was originally written in C (not C++). I'm using DllImport to ...
5
votes
2answers
260 views
Why does a .NET program survive a corrupt stack? (when using the wrong calling convention)
In VS2010, the managed debugging assistant will give you a pInvokeStackImbalance exception (pInvokeStackImbalance MDA) if you call a function using the wrong calling convention, commonly because you ...
5
votes
2answers
297 views
Can different versions of DLL be loaded in same application?
My application uses one version of library (a.dll), I am using another DLL(b.dll) which in-turn uses older version of the same library (a.dll) that i use. I am building the application by embedding a ...
5
votes
1answer
1k views
Generate C# DLLImport declarations from a native dll
Do you know a soft which automatically generates C# code (with [DllImport] attributes in .cs) from a native DLL in order to use this DLL in a C# code?
5
votes
6answers
213 views
using C function in C#
i have a dll, built with mingw
one of the header files contains this:
extern "C" {
int get_mac_address(char * mac); //the function returns a mac address in the char * mac
}
I use this dll in ...
5
votes
4answers
2k views
P/Invoke dynamic DLL search path
I have an existing app which P/Invokes to a DLL residing in the same directory as the app itself.
Now (due to the fact that Canon produces one of the crappiest API's around) I need to support two ...
5
votes
2answers
947 views
CPU Architecture Independent P/Invoke: Can the DllName or path be “dynamic”?
Is there a way to have the particular DLL referenced by a P/Invoke (DllImport) signature depend on the CPU architecture?
I'm working on an application that loads a large number of method signatures ...
5
votes
8answers
7k views
Converting a Windows Dll to .lib for C++ Visual Studio 2008
I know there is a tool called Dll to lib but the developer is asking $1000.
I only need to convert one library, once, so its not easy to justify that price.
I tried IMPLIB32.EXE, but I just get empty ...
5
votes
5answers
14k views
“Unable to find an entry point named [function] in dll” (c++ to c# type conversion)
I have a dll which comes from a third party, which was written in C++.
Here is some information that comes from the dll documentation:
//start documentation
RECO_DATA{
wchar_t Surname[200];
wchar_t ...
4
votes
1answer
34 views
Is there a way to programmatically determine which native DLLs are loaded in a .NET process?
Well, the title more or less says it all.
I know about GetAssemblies(), but that only gets the loaded managed assemblies.
In my specific case, I'm using SQL Server Compact, and I want to know the ...
4
votes
1answer
70 views
C# / C++ in same solution - DllImport not finding DLL
I have a solution with a C++ dll project and a C# project that uses it. The problem is that the build path of the c++ project is in the solution folder and the c# is in the project's bin folder (each ...
4
votes
2answers
80 views
What happens if/when DllImport is invoked multiple times?
I am loading a .dll written in Delphi 7 using DllImport within a Windows service written in C# .NET 4. Before deploying this service, I just want to make sure that I don't have to do anything special ...
4
votes
1answer
155 views
How to deploy 64-bit version of DLL on Azure, but use the 32-bit version on dev boxes
My business partner and I are co-developing a web app that's deployed on Azure. My box is based on 64-bit Windows 7, but my partner is using 32-bit Windows 7.
From within the VS2010 IDE when I added ...
4
votes
2answers
204 views
Pass multi - dimensional array from managed code to unmanaged code
I would like to do the following:
Create three dimesinal array in c# code like this:
var myArray = new short[x,y,z];
UnanagedFunction(myArray);
Pass it to unmanaged code (c++) like this:
void ...
4
votes
3answers
175 views
How to use unmanaged dll in .net project?
I'm working on an ASP.NET project which generates screen shots. I want to use gdi32.dll in my project. How can I import it?
4
votes
4answers
399 views
Importing c++ dll in c# project
I am importing some c++ dll into a c# project, I am using visual studio 2010. I have succeded to import function that are using built-in type, however I am getting error when I have tried to deal with ...
4
votes
1answer
803 views
Call C# dll function from Visual C++
I have C# dll. Bellow is code
public class Calculate
{
public static int GetResult(int arg1, int arg2)
{
return arg1 + arg2;
}
public static string GetResult(string arg1, ...
4
votes
3answers
954 views
How do I DllExport a C++ Class for use in a C# Application
I have created a C++ Dll project which contains a class "myCppClass" and tried to Dll export it using the following code as described by:
http://msdn.microsoft.com/en-us/library/a90k134d(v=vs.80).aspx
...
4
votes
4answers
844 views
Asp.Net C# DllImport problem
I want to import DLL file in my web site project. I have dll file "my.dll" in folder C:\DLLDir and I'm using the code :
[DllImport("C:\\DLLDir\\my.dll", EntryPoint = "Out32")]
This works ok. But I ...
4
votes
1answer
152 views
UInt32[] versus UInt32*
Good afternoon all,
I've been working with accessing some external DLLs via the InteropServices.DllImport. I originally settled upon some unsafe code as follows:
internal extern static unsafe void ...
4
votes
3answers
497 views
C++/CLI performance compared to Native C++?
Good morning,
I am writting a spell checker which, for the case, is performance-critical. That being, and since I am planning to connect to a DB and making the GUI using C#, I wrote an edit-distance ...
4
votes
2answers
304 views
Cannot access a Linux gcc compiled .so shared library from Windows Mono C# Project
Here's the setup:
I've got a shared library (c++ with extern "C" methods) I've compiled in linux and created a library.so file.
I've used Mono Develop on the same box (Ubuntu) and was able to ...
4
votes
2answers
523 views
Getting System Idle Time with Qt
I'm new to Qt as of a few weeks ago. I'm trying to rewrite a C# application with C++ and have a good portion of it figure now. My current challenge is finding a way to detect the system idle time.
...
4
votes
3answers
1k views
Using C++ DLL in C# project
I got a C++ dll which has to be integrated in a C# project.
I think I found the correct way to do it, but calling the dll gives me this error:
System.BadImageFormatException: An attempt was made to ...
4
votes
2answers
555 views
how to access char*** from dll import in C#
I have a function in win32 dll with signature as:
void func1(int a, char*** outData)
int a --> input parameter
char*** outData --> output parameter - pointer to array of char strings
Any idea ...
4
votes
4answers
802 views
Alternate cause of BadImageFormatException in .NET Assembly?
I'm working on a .NET 3.5 console application in C# which uses a VC++ unmanaged DLL. It ran without a problem when I worked on it a few weeks ago, but I'm coming back to it today and am now getting a ...
4
votes
8answers
371 views
SharePoint fails to load a C++ DLL on Windows 2008
I have a SharePoint DLL that does some licensing things and as part of the code it uses an external C++ DLL to get the serial number of the hardisk.
When I run this application on Windows Server 2003 ...
4
votes
2answers
991 views
Help me convert C++ structure into C#
I am completely new to C#, and need help converting a C++ structure to C#. The C++ structure is given as:
#define QUE_ADDR_BUF_LENGTH 50
#define QUE_POST_BUF_LENGTH 11
typedef struct
{
...
4
votes
6answers
2k views
Free unmanaged memory allocation from managed code
A .NET application calls C dll. The C code allocates memory for a char array and returns this array as result. The .NET applications gets this result as a string.
The C code:
extern "C" ...
4
votes
2answers
391 views
C++ from C#: C++ function (in a DLL) returning false, but C# thinks it's true!
I'm writing a little C# app that calls a few functions in a C++ API. I have the C++ code building into a DLL, and the C# code calls the API using DllImport. (I am using a .DEF file for the C++ DLL so ...