File: debugserver.lpr

package info (click to toggle)
lazarus 4.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 276,332 kB
  • sloc: pascal: 2,342,873; xml: 509,657; makefile: 352,635; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (22 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
program debugserver;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}{$IFDEF UseCThreads}
  cthreads,
  {$ENDIF}{$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms, frmmain, frmOptions
  { you can add units after this };

{$R *.res}

begin
  Application.Scaled:=True;
  Application.Title:='FPC/Lazarus debug message server';
  Application.Initialize;
  Application.CreateForm(TMainForm, MainForm);
  Application.Run;
end.