08-28-2008 09:53 AM
08-29-2008 02:06 PM
Hello Gromit,
Are you seeing any performance issues? WriteFile is one of the basic functions so it should be very speedy.
As with any general programming question though, a lot depends on your code and your system.
Please let me know if you have any specific questions or are seeing some performance issues we can try and work out.
08-29-2008 04:09 PM
Gromit,
I would recommend trying just the fopen, fprintf, and fclose functions and see if that helps. Quite some time ago we settled on that for speed reasons, and they may well hold true today.
--Ian
09-02-2008 06:03 AM
09-02-2008 08:05 AM
Hello Gromit,
As Ian mentioned, you can definitely use the native ANSI C functions (fopen, fprintf, fclose). Aside from that, if you still have performance issues you will need to use queues or buffered acquisition.