Skip to content

Commit 62db866

Browse files
author
delphidabbler
committed
Added new SUB and EOF constant
1 parent 2f02d66 commit 62db866

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Src/UConsts.pas

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,15 @@ interface
3030
VTAB = #11; // vertical tab character
3131
FF = #12; // form feed character
3232
CR = #13; // carriage return character
33+
SUB = #26; // ASCII SUB character
3334
ESC = #27; // escape character
3435
SINGLEQUOTE = ''''; // single quote character
3536
DOUBLEQUOTE = '"'; // double quote character
3637

3738
CRLF = CR + LF; // carriage return followed by line feed
3839
EOL = CRLF; // end of line character sequence for Windows systems
3940
EOL2 = EOL + EOL; // 2 end of line sequences
41+
EOF = SUB; // end of file character
4042

4143
RT_HTML = MakeIntResource(23); // HTML resource identifier
4244

0 commit comments

Comments
 (0)