Unmanaged Struct Instance in Managed Class
- by HeHasMoments
Hi,
I've got a fairly specific problem i've been struggling with for a couple of days.
I'm using a native C++, one of the methods takes a ptr to a struct containing fixed size char arrays.
e.g.
struct userData {
char data1[10];
char data2[10];
};
method:
short AddItem(long id, userData* data);
I'm trying to call to call this from Managed VC++ but I need to have an instance of userData I can keep hold of in my managed class.
Can anyone help with how to achieve this?
Thanks