We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f02d66 commit 62db866Copy full SHA for 62db866
Src/UConsts.pas
@@ -30,13 +30,15 @@ interface
30
VTAB = #11; // vertical tab character
31
FF = #12; // form feed character
32
CR = #13; // carriage return character
33
+ SUB = #26; // ASCII SUB character
34
ESC = #27; // escape character
35
SINGLEQUOTE = ''''; // single quote character
36
DOUBLEQUOTE = '"'; // double quote character
37
38
CRLF = CR + LF; // carriage return followed by line feed
39
EOL = CRLF; // end of line character sequence for Windows systems
40
EOL2 = EOL + EOL; // 2 end of line sequences
41
+ EOF = SUB; // end of file character
42
43
RT_HTML = MakeIntResource(23); // HTML resource identifier
44
0 commit comments