program OpenBDS; uses Forms, UDockManagement in 'UDockManagement.pas', UCodeEdit in 'Forms\UCodeEdit.pas' {CodeEdit}, UComponentPalette in 'DockForms\UComponentPalette.pas' {ComponentPalette}, UObjectInspector in 'DockForms\UObjectInspector.pas' {ObjectInspector}, UProjectManager in 'DockForms\UProjectManager.pas' {ProjectManager}, UStructureView in 'DockForms\UStructureView.pas' {StructureView}, UMainForm in 'Forms\UMainForm.pas' {MainForm}, UApplicationInfo in 'UApplicationInfo.pas', UProject in 'UProject.pas'; {$R *.res} begin {$WARN SYMBOL_PLATFORM OFF} ReportMemoryLeaksOnShutdown := DebugHook <> 0; {$WARN SYMBOL_PLATFORM ON} Application.Initialize; Application.Title := 'OpenBDS'; Application.CreateForm(TMainForm, MainForm); Application.CreateForm(TCodeEdit, CodeEdit); Application.CreateForm(TComponentPalette, ComponentPalette); Application.CreateForm(TObjectInspector, ObjectInspector); Application.CreateForm(TProjectManager, ProjectManager); Application.CreateForm(TStructureView, StructureView); Application.Run; end.