0
votes
1answer
38 views
Marshaling Delphi 5 OleVariant to C#
I'm trying to use some legacy Delphi 5 DLLs from C# (2.0/3.5). Some of the exported functions are declared as such:
function SimpleExport: OleVariant; stdcall;
function BiDirectio …
0
votes
1answer
11 views
P/Invoke for pointer to array of char
I have a DLL that I need to P/Invoke the following method:
DWORD Foo(
int a,
int *b,
char *c
);
Per the documentation, parameter 'c' is an out paramete …
1
vote
5answers
60 views
How come replacing char[] with IntPtr or StringBuilder in a DllImport return value causes my program to no longer find the correct entry point?
EDIT: I just realized this is defined as a MACRO, not a function. How the heck would I import a macro from a DLL to C#? (this may have to be a new question).
This is related to a …
0
votes
2answers
48 views
Parameters passed by reference come back garbage using P/Invoke
I am using Mono/C# on Linux and have the following C# code:
[DllImport("libaiousb")]
extern static ResultCode QueryDeviceInfo(uint deviceIndex,
ref uint PID, ref uint nameSiz …
1
vote
2answers
64 views
How to pass an unsigned long to a Linux shared library using P/Invoke
I am using C# in Mono and I'm trying to use pinvoke to call a Linux shared library.
The c# call is defined as:
[DllImport("libaiousb")]
extern static ulong AIOUSB_Init();
…
0
votes
2answers
44 views
PInvoke with a “strange” function
I have a .dll written in C++ with a function defined like this:
EDK_API int EE_CognitivSetCurrentLevel ( unsigned int userId,
EE_CognitivLevel_t level,
EE_CognitivActio …
3
votes
3answers
85 views
Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed?
First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works:
struct A
{
public bool bValue1;
…
1
vote
3answers
161 views
How should I declare this C struct for interop?
I have to use a legacy C routine in the application I am developing. The code in here works, but I have to convert almost all the fields to char arrays in order to use it. There is …
0
votes
3answers
55 views
Get all windows in taskbar
ive been googling for hours but cant find any way to get all windows in the taskbar.
I need to minimize/maximize all windows, but with enumthreadwindows all system process-thread w …
0
votes
2answers
116 views
How should I call this native dll function from C#?
Here's the native (Delphi 7) function:
function Foo(const PAnsiChar input) : PAnsiChar; stdcall; export;
var
s : string;
begin
s := SomeInternalMethod(input);
Result := …
0
votes
1answer
27 views
Calling CreateFile on a physical device path in a loop
I have some C# code that is calling CreateFile on a different physical device path each time through a loop(ie \.\PhysicalDrive1, then \.\PhysicalDrive2, ...) via pInvoke and then …
1
vote
2answers
71 views
C#: problem loading C++ DLL
In my code, I can load "MessageBoxA" from user32.dll and use it, but if I try to load and use a function from my DLL, I get a crash.
My C# code:
[DllImport("SimpleDLL.dll")]
st …
0
votes
1answer
19 views
How does the .net Framework Class call Platform API?
We know that .NET framework class encapsulate the Win32 API, now I am wondering how the .NET framework class call Win32 API?
Ways I know so far:
Through P/Invoke
VC++/CLI
Both …
0
votes
1answer
49 views
C#: passing array of strings to a C++ DLL
I'm trying to pass some strings in an array to my C++ DLL.
The C++ DLL's function is:
extern "C" _declspec(dllexport) void printnames(char** ppNames, int iNbOfNames)<br>
{& …
1
vote
4answers
226 views
+100
Call unmanged Code from C# - returning a struct with arrays
[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.
Hi,
I'd like to call an unmanaged function in a self-wri …
