1
1
mirror of https://github.com/fast4x/datalock.git synced 2025-01-20 11:08:26 +01:00
datalock/getvers.pas
2023-02-02 22:39:42 +01:00

35 lines
505 B
ObjectPascal

unit getvers;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils {$ifdef linux}, getvers_lin {$endif} {$ifdef windows}, getvers_win, getvers_simple_win{$endif} ;
Type
FilePath = String;
Function GetVersion (Var FilePath : String): String;
implementation
Function GetVersion (Var FilePath : String): String;
var xvers : string;
begin
{$ifdef windows}
result:=GetVersionSimpleWin(FilePath);
{$else}
GetProgramVersion(xvers,FilePath);
result:=xvers;
{$endif}
end;
end.