02-01-2013 04:47 AM
I am using nilibddc library for reading a TDMS file. Its a huge file of around 70 crores of rows in channel 0. I need to read the whole array into RAM and process it. I am using x64 compiler of visual C++. It comiles fine without any error but when I run the code it gives the error that "The storage could not be opened". I think it is because of the pointer porting issue with x64. Can anyone tell me what to change in example code provided along this library so that it runs on x64 platform?
Thanks
02-01-2013 10:32 AM
The actual download contains a 64bit area in bin\64-bit that will work with x64.
Make sure the content of this folder is copied beneath your executable.
Use dependency walker to watch the dll attach process.
Andreas
02-01-2013 11:12 AM
I have already copied down all content of dev/bin/x64 to my executable directory. But still it gives this error
02-01-2013 11:15 AM
Also I am not reading whole 70 crores of data. At this point am reading only small chunk of data(100 double values). Its still giving error
02-02-2013 01:15 AM
w
02-03-2013 11:30 AM