source: trunk/NewView/NewView.pas@ 18

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
Line 
1Program 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
10Uses
11 Forms, Graphics,
12 MainForm,
13 ProductInformationFormUnit,
14 OptionsForm, InformationFormUnit, FileDialogForm,
15 GlobalSearchForm, NoteForm, BookmarksFormUnit, PrintDialogUnit,
16SearchDirectoriesFormUnit;
17
18{$r NewView.scu}
19
20Begin
21 Application.Create;
22 Application.CreateForm (TMainForm, MainForm);
23 Application.Run;
24 Application.Destroy;
25End.
26
Note: See TracBrowser for help on using the repository browser.