Re: Calling conventions for Win32 dll -- Sharing files
- Posted by JesusC - Jesus Consuegra <jconsuegra at REDESTB.ES> Jun 24, 1998
- 643 views
Sebastiaan: > Sounds like you open the file on one computer and keep it opened > while another program tries to read it. That's not supported in > windows and dos. I'm not so sure WINDOWS and DOS cannot share files. (Do you remember the "Share" command on DOS?). > Solution (in pseudo code): > > open file > write data > close file > open file with other program > read file with other program > close file > start at begin. Although your approach could work, is'n practical in this case. The themometer takes a reading every 15 seconds, so there will be *lots* of files involved. There are also problems in synchronizing both PCs (which file should I read next?, etc.) Thanks anyway. Jesus.