2
votes
0answers
39 views
.NET Remoting Singleton memory leak, TCP, Marshal by Reference
I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine.
The service instantiates …
0
votes
1answer
22 views
Having a hard time pinvoking with a byte array.
I have an unmanaged method in a DLL with the following signature:
extern "C" ErrorCodeEnum BuildSerialTriggerSetup(TriggerSetup_type sSetup, BYTE * pFPGACfgStream, UINT32 * piStreamLen)
I have a …
1
vote
4answers
59 views
P/Invoke problem marshalling parameter
It seems I have yet another problem in the understanding of marshalling to C++ DLL.
Here is the def of the C++ function & struct :
#define SIZE_PLATE (28l)
#define SIZE_HJT …
0
votes
2answers
17 views
How do I register a proxy/stub for a COM interface defined by a third party?
There's Another Company that ships the product that consumes IAnotherCompanyInterface. We want to ship a COM object that implements IAnotherCompanyInterface. That interface is not …
1
vote
4answers
153 views
+100
How can I prevent CompileAssemblyFromSource from leaking memory?
I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it …
2
votes
3answers
86 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 the same as double …
1
vote
4answers
63 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
=> …
1
vote
5answers
118 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
{
char* id;
…
2
votes
4answers
69 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 channel values …
0
votes
1answer
58 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>
{<br>
…
1
vote
2answers
43 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];
And allocate each …
0
votes
0answers
63 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 is corrupted:
…
3
votes
3answers
95 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;
public int iValue2; …
1
vote
3answers
184 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 requires a …
1
vote
1answer
29 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 think this sentence is …
