initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 24 Jul 2019 08:31:57 +0200
changeset 5065 c828441905cf
parent 5064 6c015e746a41
child 5066 3e6e4e1231d8
initial checkin class: PersistentFileHistory added: #applicationKey: #fileHistorySizeLimit: #initialize #topDirectoryName: #topRegistryKeyName: comment/format in: #addToFileHistory: #fileHistory variable renamed in: #fetchFileHistoryFromPersistentStore changed: #directoryForFileHistory #fileHistoryFilteredForStillExistingFilesDo:removeNonExisting: #fileHistorySize #registryKeyForApplication category of: #addToFileHistory: #directoryForFileHistory #fetchFileHistoryFromPersistentStore #fileHistory #fileHistoryFilteredForStillExistingFilesDo:removeNonExisting: #fileHistorySize #initializeFileHistory #makeFileHistoryPersistent class: PersistentFileHistory class added: #new comment/format in: #documentation
libInit.cc
--- a/libInit.cc	Wed Jul 24 08:31:55 2019 +0200
+++ b/libInit.cc	Wed Jul 24 08:31:57 2019 +0200
@@ -82,6 +82,7 @@
 extern void _NameLookupError_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
 extern void _NumberSet_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
 extern void _OperationQueue_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
+extern void _PersistentFileHistory_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
 extern void _PhoneticStringUtilities_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
 extern void _PluggableDictionary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
 extern void _PluggableSet_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
@@ -273,6 +274,7 @@
     _NameLookupError_Init(pass,__pRT__,snd);
     _NumberSet_Init(pass,__pRT__,snd);
     _OperationQueue_Init(pass,__pRT__,snd);
+    _PersistentFileHistory_Init(pass,__pRT__,snd);
     _PhoneticStringUtilities_Init(pass,__pRT__,snd);
     _PluggableDictionary_Init(pass,__pRT__,snd);
     _PluggableSet_Init(pass,__pRT__,snd);