0
votes
2answers
50 views
To call a method that requires IntPtr, is it better to use /unsafe, or Marshal.AllocHGlobal?
I have a class that will have a few instances persistent throughout the duration of the application. These objects will each need to call a dll method that appends data from an ex …
0
votes
2answers
33 views
How can I ignore a field when marshalling a structure with P/Invoke
Hi,
I want to marshal a structure for use with P/Invoke, but this struct contains a field that is only relevant to my managed code, so I don't want it to be marshaled since it doe …
1
vote
2answers
60 views
F# syntax for P/Invoke signature using MarshalAs
I'm unsure of the syntax for this. I'm trying to translate this C# code into F#.
struct LASTINPUTINFO
{
public uint cbSize;
public uint dwTime;
}
public class IdleTimer
…
1
vote
2answers
42 views
Invoke C dll functions,structs and callbacks in C#
Below is the header file.can anyone please give a idea to call the callback function below.
//Function Prototype
int PASCAL EXPORT RegisterCallbackFunctions (TCallbacks CallbackF …
0
votes
1answer
84 views
JAXB - Add a node to the XML as html link
I have a basic JavaBean in my service layer and originally it was not designed for marshalling. This object is used by both JAX-WS, JAX-RS, and Servlets in other layers of my appl …
1
vote
1answer
110 views
What is wrong with my DLLImport of LogonUser with String Marshaling? [C#]
For some odd reason, when I marshal the LogonUser DLLImport parameters I am no longer able to login succesfully when using the INTERACTIVE logon type, it works for NETWORK logon ty …
2
votes
2answers
162 views
C# Newbie: How do I fix this code to do a DNS lookup?
This is my first time using C#, so I'm very much out of my element. But I have faith that the wonderful people here at Stack Overflow can help me out! I've come up with the followi …
0
votes
2answers
132 views
Managing C++ Garmin API in C#
I want to call Garmin API (http://developer.garmin.com/mobile/mobile-sdk/) in VB.Net Compact Framework project. The API is in C++, so i´m making a C# dll project as intermediate wa …
1
vote
2answers
144 views
Marshaling pointer to an array of strings
I am having some trouble marshaling a pointer to an array of strings. It looks harmless like this:
typedef struct
{
char* listOfStrings[100];
} UnmanagedStruct;
This is act …
2
votes
4answers
266 views
IntPtr arithmetics
I tried to allocate an array of structs in this way:
struct T {
int a; int b;
}
data = Marshal.AllocHGlobal(count*Marshal.SizeOf(typeof(T));
...
I'd like to access to alloc …
0
votes
1answer
172 views
C# Get progID from COM object
Hi, i would like to know if there is a way to get the progId of a com object in c#. eg - i have a webBrowser object that exposes a document object which is COM. is there a way to f …
2
votes
2answers
345 views
C#: Pointer to the struct inside the struct.
I am trying to use marshalling in C#. In C++ I have a this struct:
struct aiScene
{
unsigned int mFlags;
C_STRUCT aiNode* mRootNode;
unsigned int mNumMeshes;
C_ST …
5
votes
3answers
576 views
Do I need to delete structures marshaled via Marshal.PtrToStructure in unmanaged code?
I have this C++ code:
extern "C" __declspec(dllexport) VOID AllocateFoo(MY_DATA_STRUCTURE** foo)
{
*foo = new MY_DATA_STRUCTURE;
//do stuff to foo
}
Then in C# I call t …
1
vote
2answers
78 views
How do I ignore a field size in a struct using Marshal.SizeOf?
Is there a way to ignore a field in the calculated of the struct size using Marshal.SizeOf
Ex:
public struct Message
{
public ushort X;
public ushort Y; // Ignore this fiel …
1
vote
1answer
441 views
Marshal Unmanaged struct to managed code using c#
Hi experts,
I need to process the bytes[] when i get from external application. The external application is also done in c# and they send the bytes thru UDP. They are sending th …
