Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit b1eefdf

Browse files
committed
Annotate elixir_lookup.iss
1 parent 9779fd4 commit b1eefdf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/elixir_lookup.iss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
[Code]
1717
18+
// Given an array of Elixir releases and a release type, return the first release in the array of that type
1819
function FindFirstReleaseOfType(Releases: array of TElixirRelease; ReleaseType: TElixirReleaseType): TElixirRelease;
1920
var
2021
i: Integer;
@@ -27,6 +28,8 @@ begin
2728
end;
2829
end;
2930
31+
// Given an array of Elixir releases and a reference object, return the first release in the array which
32+
// points to the same object
3033
function FindFirstReleaseMatchingRef(Releases: array of TElixirRelease; RefMatch: TObject): TElixirRelease;
3134
var
3235
i: Integer;
@@ -39,6 +42,9 @@ begin
3942
end;
4043
end;
4144
45+
// Given an array of list boxes and an array of Elixir releases, search for a selected radio button that
46+
// points to an Elixir release reference object, and return the Elixir release which shares that reference
47+
// object
4248
function FindSelectedRelease(ListBoxes: array of TNewCheckListBox; Releases: array of TElixirRelease): TElixirRelease;
4349
var
4450
i, j: Integer;

0 commit comments

Comments
 (0)