Last change
on this file since 18 was 18, checked in by RBRi, 19 years ago |
+ newview source
|
-
Property svn:eol-style
set to
native
|
File size:
591 bytes
|
Rev | Line | |
---|
[18] | 1 | Program NewView;
|
---|
| 2 |
|
---|
| 3 | // NewView - a new OS/2 Help Viewer
|
---|
| 4 | // Copyright 2003 Aaron Lawrence (aaronl at consultant dot com)
|
---|
| 5 | // This software is released under the Gnu Public License - see readme.txt
|
---|
| 6 |
|
---|
| 7 | // Main program
|
---|
| 8 | // Becomes NewView.exe
|
---|
| 9 |
|
---|
| 10 | Uses
|
---|
| 11 | Forms, Graphics,
|
---|
| 12 | MainForm,
|
---|
| 13 | ProductInformationFormUnit,
|
---|
| 14 | OptionsForm, InformationFormUnit, FileDialogForm,
|
---|
| 15 | GlobalSearchForm, NoteForm, BookmarksFormUnit, PrintDialogUnit,
|
---|
| 16 | SearchDirectoriesFormUnit;
|
---|
| 17 |
|
---|
| 18 | {$r NewView.scu}
|
---|
| 19 |
|
---|
| 20 | Begin
|
---|
| 21 | Application.Create;
|
---|
| 22 | Application.CreateForm (TMainForm, MainForm);
|
---|
| 23 | Application.Run;
|
---|
| 24 | Application.Destroy;
|
---|
| 25 | End.
|
---|
| 26 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.