123456789101112131415161718192021 |
- unit lSpawnFCGI;
- {$mode objfpc}{$H+}
- interface
- uses
- Sockets, lNet, lCommon;
- function SpawnFCGIProcess(App, Enviro: string; const aPort: Word): Integer;
- implementation
- {$ifdef UNIX}
- {$i lspawnfcgiunix.inc}
- {$else}
- {$i lspawnfcgiwin.inc}
- {$endif}
- end.
|