I'm interfacing to a SDK that uses "C" structs and DLL's. Everything is going well, except I'm having trouble with one data element in a struct. It is:
char time[3]
I've tried converting this to
time asciiz *3
but, it gives me garbage. I've tried other formats, too, such as byte. All to no avail. Can someone tell me the proper conversion for this piece of data?
Thanks,
Dale
------------------
char time[3]
I've tried converting this to
time asciiz *3
but, it gives me garbage. I've tried other formats, too, such as byte. All to no avail. Can someone tell me the proper conversion for this piece of data?
Thanks,
Dale
------------------
Comment