mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 17:29:25 +01:00
22 lines
266 B
ObjectPascal
22 lines
266 B
ObjectPascal
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.
|
|
|