1 // =================================
 2 // Copyright (c) 2022 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 using System;
 7 
 8 namespace System.Message
 9 {
10     public const int systemScreenQuitMessageId = 0;
11     public const int systemScreenKeyPressedMessageId = 1;
12     public const int systemScreenWriteScreenMessageId = 2;
13     public const int systemScreenTimerMessageId = 3;
14     
15     public const int tabCompletionInitMessageId = 10;
16     public const int tabCompletionExitMessageId = 11;
17     public const int tabCompletionRequestMessageId = 12;
18     public const int tabCompletionReplyMessageId = 13;
19     public const int tabCompletionErrorReplyMessageId = 14;
20 
21     public const int firstUserMessageId = 100;
22 }