hi i have a third part dll which functions make request to a dvr...I tried some functions but i got wrong results...i don't know if i'm wrong or the dll have problems.. from the dll docs:
int WINAPI tvcc_get_rec_days(int server_handle,struct Camera *video_camera,char **days,int
*size);
char **days should be a not allocated character pointers array that will contain the days list int *size will be the length of array
I declared this function in c# like this
[DllImport(lib, EntryPoint = "@tvcc_get_rec_days$qqsip6Camerappcpi")]
static public extern int tvcc_get_rec_days(int server_handle,ref Camera video_camera,ref char*[] days,ref int size);
now if I call the function like this:
static char*[] days;
static int size;
int returnvalue = GamsSdk.tvcc_get_rec_days(sh2,ref cameras[1],ref days,ref size);
i get the correct return value (function works good), size is 104 but days is not a 104 array!! days.length is always = 1 but if i try to read the first cell get null exception...i tried various modification in days and sometimes if i print the cell i get 0 or strange symbols...i also thought that what i get was the address of arrays but in any case i don't know how to get it...
any idea?
Camerastruct defined in the C# code? Have you added theStructLayoutAttributeto it? – antonijn Feb 21 at 10:45StringBuilderinstead ofref char*[] daysin the declaration for the DllImport – Matthew Watson Feb 21 at 10:56