7.7.8.71. GEL_RemoveInputFile()ΒΆ

Removes input file from the breakpoint at the specified address or source line.

Syntax

GEL_RemoveInputFile( programAddr, "connectFileName" );

GEL_RemoveInputFile( "srcFileName", lineNumber, "connectFileName" );

Parameters

programAddr: an expression specifying the memory location of the breakpoint to be removed. This expression should not be enclosed in quotation marks.

srcFileName: a string value specifying the filename (without path) of the source file in which the breakpoint to be removed is located. A double backslash escape sequence is required to ensure that a backslash is inserted into the filename; for example: "c:\ti\myprojects\sine.dat".

lineNumber: a long integer value specifying the line number in said file at which the breakpoint to be removed is located.

connectFileName: a string value specifying the full path and filename of the file connected with the breakpoint. This connection will be severed and the file closed. A double backslash escape sequence is required to ensure that a backslash is inserted into the filename; for example: "c:\ti\myprojects\sine.dat".

Description

This function disconnects the specified file from the appropriate breakpoint, puts the corresponding input FileI/O object into the Stopped state, closes the input file, and removes the breakpoint (whether or not it was originally added by a call to GEL_AddInputFile).

Synchronous

Synchronous from GEL: Yes

Completely synchronous: No

Related Topics

GEL_AddInputFile

GEL_RemoveOutputFile