I would like to know if this following code is correct or source of bugs.
In a unmanaged.cpp file:
char *output[256];
extern "C"
void firstfunction(unsigned short id, char **outputtemp, unsigned long *outputsize)
{
char *content;
unsigned long contentsize;
*outputtemp = NULL;
*outputsize = 0;
// ...
output[id] = (char *) malloc (sizeof(char) * (contentsize + 1));
strcpy(output[id], content);
*output = output[id];
*outputsize = contentsize;
}
extern "C"
void lastfunction(unsigned short id)
{
free(output[id]);
output[id] = NULL;
}
And managed class1.cs and class2.cs files:
[DllImport("unmanaged.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
private static extern void firstfunction(ushort id, ref IntPtr output, ref uint outputsize);
[DllImport("unmanaged.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
private static extern void lastfunction(ushort id);
class MyClass1
{
static void Main(string[] args)
{
IntPtr output = new IntPtr();
uint outputsize = 0;
firstfunction(id, ref output, ref outputsize);
lastfunction(id);
Debug.WriteLine(Marshal.PtrToStringAnsi(output));
}
}
class MyClass2
{
static void Main(string[] args)
{
IntPtr output = new IntPtr();
uint outputsize = 0;
firstfunction(id, ref output, ref outputsize);
string result = Marshal.PtrToStringAnsi(output);
lastfunction(id);
Debug.WriteLine(result);
}
}
Is MyClass1 correct? Is MyClass2 correct? None of both?
I have good experience with java programming, but less with c# and c/c++. The c/c++ code is from another teammate.
[EDIT] I tested the code with a loop and the MyClass1 is not correct...