| Line | |
|---|
| 1 | unit UApplicationInfo;
|
|---|
| 2 |
|
|---|
| 3 | interface
|
|---|
| 4 |
|
|---|
| 5 | type
|
|---|
| 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 |
|
|---|
| 19 | var
|
|---|
| 20 | ApplicationInfo: TApplicationInfo;
|
|---|
| 21 |
|
|---|
| 22 | implementation
|
|---|
| 23 |
|
|---|
| 24 | initialization
|
|---|
| 25 |
|
|---|
| 26 | with ApplicationInfo do begin
|
|---|
| 27 | Name := 'OpenWinBox';
|
|---|
| 28 | Identification := 1;
|
|---|
| 29 | MajorVersion := 1;
|
|---|
| 30 | MinorVersion := 0;
|
|---|
| 31 | ReleaseDate := '31.7.2009';
|
|---|
| 32 | CompanyName := '';
|
|---|
| 33 | CompanyHomepage := '';
|
|---|
| 34 | HomePage := 'http://svn.zdechov.net/trac/OpenWinBox/';
|
|---|
| 35 | AuthorName := 'Chronos';
|
|---|
| 36 | EmailContact := 'robie@centrum.cz';
|
|---|
| 37 | end;
|
|---|
| 38 |
|
|---|
| 39 | finalization
|
|---|
| 40 |
|
|---|
| 41 | end.
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.