lspawnfcgi.pp 266 B

123456789101112131415161718192021
  1. unit lSpawnFCGI;
  2. {$mode objfpc}{$H+}
  3. interface
  4. uses
  5. Sockets, lNet, lCommon;
  6. function SpawnFCGIProcess(App, Enviro: string; const aPort: Word): Integer;
  7. implementation
  8. {$ifdef UNIX}
  9. {$i lspawnfcgiunix.inc}
  10. {$else}
  11. {$i lspawnfcgiwin.inc}
  12. {$endif}
  13. end.