Sfoglia il codice sorgente

* Need widestringmanager

Michael VAN CANNEYT 2 anni fa
parent
commit
7e0957fafd
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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.