-
Notifications
You must be signed in to change notification settings - Fork 0
/
DigIt_Destinations.pas
34 lines (26 loc) · 1.21 KB
/
DigIt_Destinations.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(*******************************************************************************
** DigIt **
** **
** (s) 2024 Massimo Magnano **
** **
********************************************************************************
** Internal Destinations depending on the OS **
*******************************************************************************)
unit DigIt_Destinations;
{$mode ObjFPC}{$H+}
interface
uses
DigIt_Destination_SaveFiles_SettingsForm
{$ifdef WINDOWS}
{$endif}
{$ifdef LINUX}
{$endif}
;
{ #note 10 -oMaxM : This function is temporary and should be removed when SaveFiles is implemented as a descendant of IDigIt_Destination }
function Destination_SaveFiles_Settings_Execute(var ASaveExt, ASavePath: String): Boolean;
implementation
function Destination_SaveFiles_Settings_Execute(var ASaveExt, ASavePath: String): Boolean;
begin
Result:= TDest_SaveFiles_Settings.Execute(ASaveExt, ASavePath);
end;
end.