S
Stefan Slapeta
Hi all,
I've no idea how to write the C# signatures for these four kinds of
parameters of C++ (better: C) functions exported from a DLL:
// i is ONLY out
void f1(unsigned int *i);
// ai is ONLY out and terminated by 0:
void f2(unsigned int ai[]);
// ai is ONLY in:
void f3(unsigned int ai[]);
// asz is an array of const char* and ONLY in
void f4(const char **asz);
Maybe one of you could help me!
Thanks,
Stefan
I've no idea how to write the C# signatures for these four kinds of
parameters of C++ (better: C) functions exported from a DLL:
// i is ONLY out
void f1(unsigned int *i);
// ai is ONLY out and terminated by 0:
void f2(unsigned int ai[]);
// ai is ONLY in:
void f3(unsigned int ai[]);
// asz is an array of const char* and ONLY in
void f4(const char **asz);
Maybe one of you could help me!
Thanks,
Stefan