source: trunk/UApplicationInfo.pas

Last change on this file was 1, checked in by george, 15 years ago
  • New: Imported base application with sample docked windows.
File size: 758 bytes
Line 
1unit UApplicationInfo;
2
3interface
4
5type
6 TApplicationInfo = record
7 Name: string;
8 Identification: Byte;
9 MajorVersion: Byte;
10 MinorVersion: Byte;
11 CompanyName: string;
12 CompanyHomepage: string;
13 HomePage: string;
14 AuthorName: string;
15 EmailContact: string;
16 ReleaseDate: string;
17 end;
18
19var
20 ApplicationInfo: TApplicationInfo;
21
22implementation
23
24initialization
25
26with ApplicationInfo do begin
27 Name := 'OpenBDS';
28 Identification := 1;
29 MajorVersion := 0;
30 MinorVersion := 1;
31 ReleaseDate := '21.7.2009';
32 CompanyName := '';
33 CompanyHomepage := '';
34 HomePage := '';
35 AuthorName := 'Chronos';
36 EmailContact := 'robie@centrum.cz';
37end;
38
39finalization
40
41end.
Note: See TracBrowser for help on using the repository browser.