- Timestamp:
- Jul 9, 2012, 3:58:43 PM (12 years ago)
- Location:
- Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/Common.lpk
r380 r384 22 22 <License Value="GNU/GPL"/> 23 23 <Version Minor="7"/> 24 <Files Count="1 4">24 <Files Count="15"> 25 25 <Item1> 26 26 <Filename Value="StopWatch.pas"/> … … 82 82 <UnitName Value="UXMLUtils"/> 83 83 </Item14> 84 <Item15> 85 <Filename Value="UApplicationInfo.pas"/> 86 <HasRegisterProc Value="True"/> 87 <UnitName Value="UApplicationInfo"/> 88 </Item15> 84 89 </Files> 85 90 <i18n> -
Common/Common.pas
r380 r384 10 10 StopWatch, UCommon, UDebugLog, UDelay, UPrefixMultiplier, UURI, UThreading, 11 11 UMemory, UResetableThread, UPool, ULastOpenedList, URegistry, 12 UJobProgressView, UXMLUtils, LazarusPackageIntf;12 UJobProgressView, UXMLUtils, UApplicationInfo, LazarusPackageIntf; 13 13 14 14 implementation … … 19 19 RegisterUnit('ULastOpenedList', @ULastOpenedList.Register); 20 20 RegisterUnit('UJobProgressView', @UJobProgressView.Register); 21 RegisterUnit('UApplicationInfo', @UApplicationInfo.Register); 21 22 end; 22 23 -
Common/URegistry.pas
r371 r384 9 9 10 10 type 11 TRegistryRoot = (rrKeyClassesRoot = HKEY($80000000), 12 rrKeyCurrentUser = HKEY($80000001), 13 rrKeyLocalMachine = HKEY($80000002), 14 rrKeyUsers = HKEY($80000003), 15 rrKeyPerformanceData = HKEY($80000004), 16 rrKeyCurrentConfig = HKEY($80000005), 17 rrKeyDynData = HKEY($80000006)); 11 18 12 19 { TRegistryEx } -
Common/UThreading.pas
r369 r384 303 303 I: Integer; 304 304 begin 305 if Terminated then Exit; 305 306 SysUtils.Sleep(Delay mod Quantum); 306 307 for I := 1 to (Delay div Quantum) do begin
Note:
See TracChangeset
for help on using the changeset viewer.