ID Number: Q31537
5.10 | 5.10
MS-DOS | OS/2
Summary:
The following information is from the MASM Version 5.10 EXT.DOC
file.
Please note that numbering for both COL and LINE variables begins
with 0.
More Information:
/* CopyLine - copies lines from one file to another
*
* The CopyLine function copies lines yStart through yEnd, inclusive,
* and inserts them into the destination file just before line yDst. If
* the handle to the source file is NULL, then the function inserts a
* blank line into the destination file (in that case, yStart and yEnd
* are ignored).
*
* pFileSrc Handle to source file
* pFileDst Handle to destination file
* yStart First line to be copied
* yEnd Last line to be copied
* yDst Destination of copy
*/
void pascal CopyLine (pFileSrc, pFileDst, yStart, yEnd, yDst)
PFILE pFileSrc, pFileDst;
LINE yStart, yEnd, yDst;