Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Latest commit

 

History

History

Q31518

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
layout title permalink
page
Q31518: MASM 5.10 EXT.DOC: DelLine - Deletes Lines from a File
/pubs/pc/reference/microsoft/kb/Q31518/

Q31518: MASM 5.10 EXT.DOC: DelLine - Deletes Lines from a File

Article: Q31518
Version(s): 5.10   | 5.10
Operating System: MS-DOS | OS/2
Flags: ENDUSER |
Last Modified: 12-JAN-1989

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.

/*  DelLine - deletes lines from a file
 *
 *  The DelLine function deletes lines yStart through yEnd, inclusive,
 * in the file pFile.
 *
 *  pfile       Handle to file from which lines are to be deleted
 *  yStart      First line to be deleted
 *  yEnd        Last line to be deleted
 */
void pascal DelLine (pfile, yStart, yEnd)
PFILE pfile;
LINE yStart, yEnd;