2
votes
3answers
80 views
Are double* and double** blittable types? C#
Hello,
I have a question regarding marshalling of C++ arrays to C#.
Does the double* automatically convert to double[]?
I know double is a blittable type, so double from C++ is t …
1
vote
4answers
56 views
How do I unmarshal a ruby object in java?
I have a an object that I'd like to grab the contents of in java.
The only problem is that is is currently in ruby.
irb(main):050:0> blah
=> "BAh7ByIeYXV0aGVudGljYXRpb25fc3R …
1
vote
5answers
92 views
Marshalling an array of structures from C++ to C#
In my C# code I'm trying to fetch an array of structures from a legacy C++ DLL (the code I cannot change).
In that C++ code, the structure is defined like this:
struct MyStruct
{ …
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;
…
2
votes
4answers
49 views
Copy bytes in memory to an Array in VB.NET
Hello,
unfortunately I cannot resort to C# in my current project, so I'll have to solve this without the unsafe keyword.
I've got a bitmap, and I need to access the pixels and ch …
0
votes
1answer
48 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
2answers
37 views
C#: calling C++ DLL with char** argument
I would like to call this C++ function from my C# code:
void GetArrayOfNames(char** names, int nbOfNames);
To call it in C++, I just define an array of char*:
char* aNames[20]; …
1
vote
3answers
210 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 …
1
vote
3answers
115 views
Marshalling struct with embedded pointer from C# to unmanaged driver
Hi,
I'm trying to interface C# (.NET Compact Framework 3.5) with a Windows CE 6 R2 stream driver using P/Invoked DeviceIoControl() calls . For one of the IOCTL codes, the driver …
0
votes
0answers
51 views
C# - Buffer Corruption with Marshal.Copy()
I am receiving an IntPtr and an int specifying the number of bytes it points to. The data can contain any characters including null, EOL, etc. When trying the following, the buffer …
1
vote
2answers
48 views
Marshalling structs from WM_COPYDATA messages
I am trying to get a C# WPF application to communicate with another application written in C using WM_COPYDATA. The C app is trying to send a struct as follows:
typedef struct
{
…
0
votes
1answer
77 views
Marshalling and converting VB6 code to .NET
I am having trouble converting some code from VB6 to VB.NET (I don't have as much experience with .NET). When I run the 'Select function (from the WS2_32.dll library) in .NET, usin …
0
votes
1answer
53 views
Marshalling strings, C++ to C#: ‘conversion is not supported by the library’
Summary:
When attempting to use marshalling to pass string data into a C++ DLL from C#, I'm getting
'msclr::interop::error_reporting_helper<_To_Type,_From_Type>::marshal_a …
1
vote
1answer
25 views
MSDN RPC marshal document wrong?
Hello everyone,
I am using VSTS 2008 + Native C++ to develop RPC programs (both client and server). I am reading MSDN document for marshalling (The wire_marshal Attribute).
I thi …
1
vote
3answers
113 views
Why does marshalling a struct of callback delegates cause an AccessViolationException
Introduction
I am trying to use P/Invoke to register a struct of callbacks with a native dll. When calling a function that makes the native dll invoke the callbacks an AccessViola …
