3
votes
2answers
119 views
C++ from C#: C++ function (in a DLL) returning false, but C# thinks it’s true!
Hi everyone,
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 usi …
1
vote
2answers
43 views
C# DllImport MFC Extension DLL & Name Mangling
I have a MFC extension DLL which I want to use in a C# application. The functions I'm exposing are C functions, i.e. I'm exporting them like this
extern "C"
{
__declspec(dllexpor …
1
vote
3answers
134 views
Access violation when calling external function (C++) from Delphi application
I've an external DLL written in C++. The piece below declares a struct type and a function, which, being given a pointer, fills a variable of this type:
enum LimitType { NoLimit, …
1
vote
1answer
99 views
Trying to create a Math Input Panel in C#
How do I create a Math Input Panel in C#?
I have tried to put it into a dll and call it but it just closes right away.
#include <stdafx.h>
#include <atlbase.h>
#incl …
2
votes
2answers
90 views
Does “fixed” really guarantee anything when passing pointers (ie int[]) to DLLs?
I tried searching for this but haven't found anything, however when passing an int[] into a native DLL function as a pointer, isn't there still the danger that the DLL could mainta …
2
votes
3answers
173 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 …
1
vote
3answers
100 views
Read a Registry Key
I have a web application which is importing DLLs from the bin folder.
const string dllpath = "Utility.dll";
[DllImport(dllpath)]
Now what i want to do is first import the D …
8
votes
6answers
166 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 …
2
votes
2answers
54 views
Catch DllNotFoundException from P/Invoke
Found post with a solution: http://stackoverflow.com/questions/970017/how-do-i-handle-a-failed-dllimport
I'm writing an app that checks the OS version to do different things depen …
0
votes
3answers
115 views
C# call to unmanaged C++ returning string of squares symbols
I have some C# code calling into an unmanaged C++ DLL. The method I am calling is intended to accept a string as a ref. To handle this I pass in a StringBuilder, otherwise there …
1
vote
4answers
210 views
Delphi: Access violation after calling function from external DLL (C++)
There's a function, written in C++ and compiled as DLL, which I want to use in my Delphi application.
Scraper.cpp:
SCRAPER_API bool ScraperGetWinList(SWin winList[100])
{
iCu …
0
votes
4answers
143 views
DllImport a c++ DLL in to a C# app, BYTE * p
Hello
I have a exported function in a c++ DLL
// C++ DLL (Blarggg.dll)
extern "C"
{
USHORT ReadProperty( BYTE * messsage, USHORT length, BYTE * invokeID )
{
…
1
vote
4answers
206 views
Can’t use DLL (written in C++) in Delphi: The procedure entry point could not be located
I've compiled a DLL in Visual Studio (the source code is in C++, which I barely understand). Here's a piece of Scraper.h:
struct SWin
{
char title[512];
HWND hwnd;
};
SCRAP …
3
votes
4answers
195 views
Is it possible to restart a PC using “pure” .NET and *without* using p/invoke?
Is it possible, without employing pinvoke, to restart a PC using .NET?
I kind of just repeated the title, but I'm not too sure how to elaborate much further!
Edit:
I should have …
2
votes
8answers
515 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, …
