Skip to content

Commit a892abf

Browse files
author
delphidabbler
committed
Remove all comments from .ini files
1 parent 8405d81 commit a892abf

File tree

21 files changed

+5
-63
lines changed

21 files changed

+5
-63
lines changed

csdb/collection/arrays.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ DelphiXE4=Y
132132
Delphi10S=Y
133133
FPC=Y
134134

135-
# from arrays.3.ini
136-
137135
[AppendByteArray]
138136
DescEx="Appends array of bytes <var>B2</var> to the end of byte array <var>B1</var>."
139137
Depends=TBytes
@@ -342,8 +340,6 @@ DelphiXE4=Y
342340
Delphi10S=Y
343341
FPC=Y
344342

345-
# from arrays.4.ini
346-
347343
[TArrayUtils]
348344
Kind=class
349345
Desc="A method-only advanced record that provides utility methods for working with generic dynamic arrays."

csdb/collection/consts.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
# from consts.3.ini
2-
3-
[SHIL_Enum]
1+
[SHIL_Enum]
42
Kind=const
53
DisplayName=SHIL_* Constants
64
DescEx="Constants that can be passed as flags to specify the required image type in calls to the <var>SysImageListHandleEx</var> routine."

csdb/collection/date.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,8 +1030,6 @@ DelphiXE4=Y
10301030
Delphi10S=Y
10311031
FPC=Y
10321032

1033-
# from date.3.ini
1034-
10351033
[GMTToLocalTime]
10361034
DescEx="<p>Converts the given <var>TDateTime</var> value <var>GMTTime</var> from GMT (UTC) to local time.</p><p>Raises an exception if <var>GMTTime</var> is not valid or can't be converted.</p>"
10371035
Extra="<p><warning>Warning:</warning> This routine requires the Windows NT platform (NT, 2000, XP, Vista etc).</p>"

csdb/collection/drive.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ DelphiXE4=Y
135135
Delphi10S=Y
136136
FPC=Y
137137

138-
# from drive.3.ini
139-
140138
[DeleteVolumeName]
141139
Desc="Deletes an existing volume label on a given drive. Returns True on success and False on failure."
142140
Extra="<p><warning>Note:</warning> Fails and returns False if the process has insufficient privileges to set the volume name.</p>"

csdb/collection/encoding.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,6 @@ DelphiXE4=Y
325325
Delphi10S=Y
326326
FPC=Y
327327

328-
# from encoding.3.ini
329-
330328
[IsASCIIFile]
331329
DescEx="<p>Checks if file the named by <var>FileName</var> is a valid ASCII text file.</p><p><var>BytesToCheck</var> determines the number of bytes of the file that are to be checked. Specify 0 (the default) to check the whole file.</p><p>The file is read in chunks of <var>BufSize</var> bytes. If this parameter is omitted, the buffer size defaults to 8Kb.</p>"
332330
Extra="<p>It is possible, but unlikely, that an ASCII file could actually be encoded in UTF-7. This is a 7 bit encoding and therefore uses only valid ASCII characters. You can check for this encoding using the <var>IsUTF7File</var> snippet.</p>"

csdb/collection/file.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,8 +773,6 @@ DelphiXE4=Y
773773
Delphi10S=Y
774774
FPC=Y
775775

776-
# from file.3.ini
777-
778776
[CountFiles]
779777
DescEx="<p>Returns the number of files in the folder specified by <var>APath</var> that match the DOS style wildcard <var>AWildCard</var>.</p><p>Any sub-directories of <var>APath</var> and the files they contain are not counted.</p>"
780778
Extra="<p>Slightly modified routine from Bill Miller's snippets collection.</p>"

csdb/collection/graphics.ini

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -808,10 +808,6 @@ DelphiXE4=Y
808808
Delphi10S=Y
809809
FPC=N
810810

811-
# from graphics.3.ini
812-
813-
## Graphics routines ##
814-
815811
[AdjustBitmapBrightness]
816812
DescEx="Changes the brightness of bitmap <var>Bmp</var> by a given <var>Delta</var> value in range -255..+255."
817813
Extra="<p>Based on code found on the former EFG's Delphi Reference Library.</p> <p><strong>Note from EFG:</strong> Normally a <var>pf24bit</var> bitmap scanline would be accessed as a type <mono>TRGBTripleArray = array[Word] of TRGBTriple</mono>, but since we can treat the three color components (<var>rgbtRed</var>, <var>rgbtGreen</var>, <var>rgbtBlue</var>) in exactly the same way, we can access the scanline as a <var>pByteArray</var> of <mono>3 * Bitmap.Width</mono> bytes.</p>"
@@ -1501,8 +1497,6 @@ DelphiXE4=Y
15011497
Delphi10S=Y
15021498
FPC=N
15031499

1504-
## Graphics types ##
1505-
15061500
[AdjustImageTypes]
15071501
Kind=type
15081502
DisplayName="AdjustImage Types"
@@ -1647,8 +1641,6 @@ DelphiXE4=Y
16471641
Delphi10S=Y
16481642
FPC=Y
16491643

1650-
## Graphics constants ##
1651-
16521644
[AdjustImageConsts]
16531645
Kind=const
16541646
DisplayName="AdjustImage Constants"

csdb/collection/hex.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,6 @@ DelphiXE4=Y
241241
Delphi10S=Y
242242
FPC=Y
243243

244-
# from hex.3.ini
245-
246244
[HexByteSize]
247245
Desc="Returns the number of bytes represented by the given hexadecimal string."
248246
Extra="<p>Assumes that <var>HexStr</var> contains only valid hex digits, optionally prefixed by '$' or '0x'.</p>"

csdb/collection/io.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ DelphiXE4=Y
139139
Delphi10S=Y
140140
FPC=Y
141141

142-
# from io.3.ini
143-
144142
[FileHasWatermark_A]
145143
DisplayName="FileHasWatermark (byte array overload)"
146144
DescEx="<p>Checks if the file named <var>FileName</var> contains the sequence of bytes given in the byte arrary <var>Watermark</var> starting at the byte offset given by the (optional) <var>Offset</var> parameter.</p>"

csdb/collection/maths.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,6 @@ DelphiXE4=Y
401401
Delphi10S=Y
402402
FPC=Y
403403

404-
# from maths.3.ini
405-
406404
[DecimalToFraction]
407405
DescEx="<p>Converts the given decimal to a fraction. The numerator and denominator are passed out as floating point numbers in <var>FractionNumerator</var> and <var>FractionDenominator</var> respectively.</p><p><var>AccuracyFactor</var> determines how accurate the conversion is to be.</p>"
408406
Extra="<p>Examples of <var>AccuracyFactor</var> values: 0.0005 requires accuracy of 3 decimal places and 0.000005 requires accuracy of 5 decimal places.</p> <p>Adapted from the Turbo Pascal code by John Kennedy, Mathematics Department, Santa Monica College.</p>"

0 commit comments

Comments
 (0)