소스 검색

* Need widestringmanager

Michael VAN CANNEYT 2 년 전
부모
커밋
7e0957fafd
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      packages/fcl-web/examples/echo/cgi/echo.lpr

+ 4 - 0
packages/fcl-web/examples/echo/cgi/echo.lpr

@@ -3,12 +3,16 @@ program echo;
 {$mode objfpc}{$H+}
 
 uses
+{$ifdef unix}
+  cwstring,
+{$endif}
   fpCGI, wmecho;
 
 {$R *.res}
 
 begin
   Application.Initialize;
+  Application.Title:='Echo demo';
   Application.Run;
 end.