Support Board
Date/Time: Tue, 26 Nov 2024 02:31:32 +0000
Post From: XXX.scid file sharing question
[2014-03-21 21:34:23] |
User47706 - Posts: 22 |
Hi Folks, According to some of your documentation, " . . . There are two purposes for this documentation. The first is so that you can read the data in other programs and the second is so that you can feed Sierra Chart data from your own source. . . " I have inferred that I should be able to run my own C++ program that reads a xxx.scid file while that file is also in use by Sierra.exe. So far, I cannot seem to do that successfully by any measure. I have experimented with having my C++ program attached to the Sierra.exe process while trying to read an .scid file to no avail. Should I be able to do this? Here is my C++ file handle definition: HANDLE Sierra_file = CreateFile(filePathName, // name of the file GENERIC_READ, // for reading only FILE_SHARE_READ, // disp=shr for read NULL, // default security OPEN_EXISTING, // do not attempt to create the file FILE_ATTRIBUTE_NORMAL, // normal file NULL); // no attr template |