# HG changeset patch # User Claus Gittinger # Date 1484611254 -3600 # Node ID 97321b9b86e3bc4d3149e57ebb83f249eb332dba # Parent e70044a45bc6701d087bf31327e18a8cc3c6295d new class: ExternalStreamMonitor diff -r e70044a45bc6 -r 97321b9b86e3 libInit.cc --- a/libInit.cc Tue Jan 17 01:00:52 2017 +0100 +++ b/libInit.cc Tue Jan 17 01:00:54 2017 +0100 @@ -65,6 +65,7 @@ extern void _SyntaxElement_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _SyntaxHighlighter2_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _SystemBrowser_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); +extern void _SystemStatusMonitor_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _Tools__AbstractTestRunner_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _Tools__BreakpointBrowser_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _Tools__Browslet_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); @@ -129,6 +130,7 @@ extern void _DictionaryInspectorView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _Diff3ExclusiveVisitor_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _DiffCodeView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); +extern void _ExternalStreamMonitor_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _FileApplicationNoteBook_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _FileBrowserV2_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); extern void _FileBrowserV2SettingsAppl_Init(int pass, struct __vmData__ *__pRT__, OBJ snd); @@ -266,6 +268,7 @@ _SyntaxElement_Init(pass,__pRT__,snd); _SyntaxHighlighter2_Init(pass,__pRT__,snd); _SystemBrowser_Init(pass,__pRT__,snd); + _SystemStatusMonitor_Init(pass,__pRT__,snd); _Tools__AbstractTestRunner_Init(pass,__pRT__,snd); _Tools__BreakpointBrowser_Init(pass,__pRT__,snd); _Tools__Browslet_Init(pass,__pRT__,snd); @@ -330,6 +333,7 @@ _DictionaryInspectorView_Init(pass,__pRT__,snd); _Diff3ExclusiveVisitor_Init(pass,__pRT__,snd); _DiffCodeView_Init(pass,__pRT__,snd); + _ExternalStreamMonitor_Init(pass,__pRT__,snd); _FileApplicationNoteBook_Init(pass,__pRT__,snd); _FileBrowserV2_Init(pass,__pRT__,snd); _FileBrowserV2SettingsAppl_Init(pass,__pRT__,snd);