mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 22:10:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			515 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			515 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| program FPDocManager;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| uses
 | |
|   {$IFDEF UNIX}{$IFDEF UseCThreads}
 | |
|   cthreads,
 | |
|   {$ENDIF}{$ENDIF}
 | |
|   Interfaces, // this includes the LCL widgetset
 | |
|   Forms, frmmain, umakeskel, fMain, fConfig, uManager, fLogView,
 | |
|   fUpdateView, ulpk, ConfigFile, feditor;
 | |
| 
 | |
| {$R *.res}
 | |
| 
 | |
| begin
 | |
|   RequireDerivedFormResource := True;
 | |
|   Application.Initialize;
 | |
|   Application.CreateForm(TMain, Main);
 | |
|   Application.CreateForm(TLogView, LogView);
 | |
|   Application.CreateForm(TUpdateView, UpdateView);
 | |
|   Application.Run;
 | |
| end.
 | |
| 
 | 
