mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-24 13:58:38 +02:00
* Move simpleipc samples to appropriate directory
git-svn-id: trunk@33126 -
This commit is contained in:
parent
b7484d4a81
commit
d37d99a24f
6
.gitattributes
vendored
6
.gitattributes
vendored
@ -1956,8 +1956,6 @@ packages/fcl-base/examples/intl/restest.pb.po svneol=native#text/plain
|
||||
packages/fcl-base/examples/intl/restest.ru.mo -text
|
||||
packages/fcl-base/examples/intl/restest.ru.po svneol=native#text/plain
|
||||
packages/fcl-base/examples/intl/resttest.po svneol=native#text/plain
|
||||
packages/fcl-base/examples/ipcclient.pp svneol=native#text/plain
|
||||
packages/fcl-base/examples/ipcserver.pp svneol=native#text/plain
|
||||
packages/fcl-base/examples/isockcli.pp svneol=native#text/plain
|
||||
packages/fcl-base/examples/isocksvr.pp svneol=native#text/plain
|
||||
packages/fcl-base/examples/istream.pp svneol=native#text/plain
|
||||
@ -2586,6 +2584,10 @@ packages/fcl-process/examples/demoruncommand.pp svneol=native#text/plain
|
||||
packages/fcl-process/examples/echoparams.pp svneol=native#text/plain
|
||||
packages/fcl-process/examples/empty.pp svneol=native#text/pascal
|
||||
packages/fcl-process/examples/infinity.pp svneol=native#text/pascal
|
||||
packages/fcl-process/examples/ipcclient.lpi svneol=native#text/plain
|
||||
packages/fcl-process/examples/ipcclient.pp svneol=native#text/plain
|
||||
packages/fcl-process/examples/ipcserver.lpi svneol=native#text/plain
|
||||
packages/fcl-process/examples/ipcserver.pp svneol=native#text/plain
|
||||
packages/fcl-process/examples/waitonexit.pp svneol=native#text/pascal
|
||||
packages/fcl-process/fpmake.pp svneol=native#text/plain
|
||||
packages/fcl-process/src/amicommon/pipes.inc svneol=native#text/plain
|
||||
|
50
packages/fcl-process/examples/ipcclient.lpi
Normal file
50
packages/fcl-process/examples/ipcclient.lpi
Normal file
@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<MainUnitHasCreateFormStatements Value="False"/>
|
||||
<MainUnitHasTitleStatement Value="False"/>
|
||||
<UseDefaultCompilerOptions Value="True"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<Title Value="ipcclient"/>
|
||||
<UseAppBundle Value="False"/>
|
||||
<ResourceType Value="res"/>
|
||||
</General>
|
||||
<i18n>
|
||||
<EnableI18N LFM="False"/>
|
||||
</i18n>
|
||||
<VersionInfo>
|
||||
<StringTable ProductVersion=""/>
|
||||
</VersionInfo>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="Default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
<FormatVersion Value="1"/>
|
||||
</local>
|
||||
</RunParams>
|
||||
<Units Count="1">
|
||||
<Unit0>
|
||||
<Filename Value="ipcclient.pp"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit0>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<Target>
|
||||
<Filename Value="ipcclient"/>
|
||||
</Target>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
</CONFIG>
|
50
packages/fcl-process/examples/ipcserver.lpi
Normal file
50
packages/fcl-process/examples/ipcserver.lpi
Normal file
@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<MainUnitHasCreateFormStatements Value="False"/>
|
||||
<MainUnitHasTitleStatement Value="False"/>
|
||||
<UseDefaultCompilerOptions Value="True"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<Title Value="ipcserver"/>
|
||||
<UseAppBundle Value="False"/>
|
||||
<ResourceType Value="res"/>
|
||||
</General>
|
||||
<i18n>
|
||||
<EnableI18N LFM="False"/>
|
||||
</i18n>
|
||||
<VersionInfo>
|
||||
<StringTable ProductVersion=""/>
|
||||
</VersionInfo>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="Default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
<FormatVersion Value="1"/>
|
||||
</local>
|
||||
</RunParams>
|
||||
<Units Count="1">
|
||||
<Unit0>
|
||||
<Filename Value="ipcserver.pp"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
</Unit0>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="11"/>
|
||||
<Target>
|
||||
<Filename Value="ipcserver"/>
|
||||
</Target>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
</CompilerOptions>
|
||||
</CONFIG>
|
@ -1,6 +1,6 @@
|
||||
{$mode objfpc}
|
||||
{$h+}
|
||||
program ipccerver;
|
||||
program ipcserver;
|
||||
|
||||
{$APPTYPE CONSOLE}
|
||||
|
Loading…
Reference in New Issue
Block a user