onguard: Fix compilation under Linux. Add chm help file created from provided hlp file.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8712 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-02-18 19:53:21 +00:00
parent 0cce0cb5d5
commit 87a257bf41
4 changed files with 11 additions and 14 deletions

Binary file not shown.

View File

@ -24,7 +24,7 @@ Ports : Andrew Haines (Kylix version), Bogusław Brandys (FPC/Lazarus)"/>
"/> "/>
<Version Major="1" Release="1"/> <Version Major="1" Release="1"/>
<Files Count="23"> <Files Count="22">
<Item1> <Item1>
<Filename Value="../source/ogfile.pas"/> <Filename Value="../source/ogfile.pas"/>
<UnitName Value="ogfile"/> <UnitName Value="ogfile"/>
@ -114,10 +114,6 @@ Ports : Andrew Haines (Kylix version), Bogusław Brandys (FPC/Lazarus)"/>
<Filename Value="../source/onguard.pas"/> <Filename Value="../source/onguard.pas"/>
<UnitName Value="onguard"/> <UnitName Value="onguard"/>
</Item22> </Item22>
<Item23>
<Filename Value="../source/ogfirst.pas"/>
<UnitName Value="ogfirst"/>
</Item23>
</Files> </Files>
<CompatibilityMode Value="True"/> <CompatibilityMode Value="True"/>
<RequiredPkgs Count="2"> <RequiredPkgs Count="2">

View File

@ -1,23 +1,24 @@
{ This file was automatically created by Lazarus. do not edit! { This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package. This source is only used to compile and install the package.
} }
unit tponguard; unit tponguard;
{$warn 5023 off : no warning about unused units}
interface interface
uses uses
ogfile, ognetwrk, ogproexe, ogreg, ogutil, qogabout0, qonguard1, ogfile, ognetwrk, ogproexe, ogreg, ogutil, qogabout0, qonguard1, qonguard2,
qonguard2, qonguard3, qonguard4, qonguard5, qonguard6, qonguard7, ogconst, qonguard3, qonguard4, qonguard5, qonguard6, qonguard7, ogconst, onguard,
onguard, ogfirst, LazarusPackageIntf; LazarusPackageIntf;
implementation implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('ogreg', @ogreg.Register); RegisterUnit('ogreg', @ogreg.Register);
end; end;
initialization initialization
RegisterPackage('tponguard', @Register); RegisterPackage('tponguard', @Register);
end. end.